diff --git a/.all-contributorsrc b/.all-contributorsrc new file mode 100644 index 00000000..ba15d83c --- /dev/null +++ b/.all-contributorsrc @@ -0,0 +1,89 @@ +{ + "files": [ + "README.md" + ], + "imageSize": 100, + "commit": false, + "commitConvention": "angular", + "contributors": [ + { + "login": "gustavokennedy", + "name": "Gustavo Kennedy Renkel", + "avatar_url": "https://avatars.githubusercontent.com/u/98914036?v=4", + "profile": "http://overall.cloud", + "contributions": [ + "translation" + ] + }, + { + "login": "zaharovrd", + "name": "Roman", + "avatar_url": "https://avatars.githubusercontent.com/u/8171816?v=4", + "profile": "http://www.youradman.com", + "contributions": [ + "translation" + ] + }, + { + "login": "tomekkowalczyk", + "name": "Tomasz Kowalczyk", + "avatar_url": "https://avatars.githubusercontent.com/u/39382654?v=4", + "profile": "http://adevo.pl", + "contributions": [ + "doc" + ] + }, + { + "login": "kukis2107", + "name": "kukis2107", + "avatar_url": "https://avatars.githubusercontent.com/u/60287846?v=4", + "profile": "https://github.com/kukis2107", + "contributions": [ + "translation" + ] + }, + { + "login": "putzwasser", + "name": "putzwasser", + "avatar_url": "https://avatars.githubusercontent.com/u/26040044?v=4", + "profile": "https://github.com/putzwasser", + "contributions": [ + "review" + ] + }, + { + "login": "Moongazer", + "name": "Moongazer", + "avatar_url": "https://avatars.githubusercontent.com/u/1685510?v=4", + "profile": "https://github.com/Moongazer", + "contributions": [ + "doc" + ] + }, + { + "login": "patrykgruszka", + "name": "Patryk Gruszka", + "avatar_url": "https://avatars.githubusercontent.com/u/8580942?v=4", + "profile": "https://github.com/patrykgruszka", + "contributions": [ + "doc" + ] + }, + { + "login": "Amiyah14", + "name": "Emily", + "avatar_url": "https://avatars.githubusercontent.com/u/45315891?v=4", + "profile": "https://github.com/Amiyah14", + "contributions": [ + "doc" + ] + } + ], + "contributorsPerLine": 7, + "skipCi": true, + "repoType": "github", + "repoHost": "https://github.com", + "projectName": "user-documentation", + "projectOwner": "mautic", + "commitType": "docs" +} diff --git a/.ddev/commands/web/build-docs b/.ddev/commands/web/build-docs new file mode 100755 index 00000000..754876e7 --- /dev/null +++ b/.ddev/commands/web/build-docs @@ -0,0 +1,32 @@ +#!/usr/bin/env bash + +## Description: Build User documentation using the Sphinx HTML builder. +## Usage: build-docs +## Example: ddev build-docs + +# Ensure we fail on error +set -e + +# Initialize terminal colors/styles +bold=$(tput bold) +green=$(tput setaf 2) +reset=$(tput sgr0) +underline=$(tput smul) + +echo "${bold}${green}🔧 Building user documentation...${reset}" + +# Ensure we're in the right directory +cd /var/www/html/docs +echo + +# Run the build +make html + +# Success message +echo +echo "${green}✅ Documentation build completed successfully!${reset}" +echo "${green}📁 The HTML pages are in: ${bold}/var/www/html/docs/build/html${reset}" + +# Friendly access hint +echo "${green}🌐 View the documentation at: ${bold}${underline}https://${DDEV_HOSTNAME}${reset}" +echo \ No newline at end of file diff --git a/.ddev/config.yaml b/.ddev/config.yaml new file mode 100644 index 00000000..a462ac19 --- /dev/null +++ b/.ddev/config.yaml @@ -0,0 +1,8 @@ +type: generic +docroot: "docs/build/html" +working_dir: + web: /var/www/html/docs +omit_containers: [db] +hooks: + post-start: + - exec: "make html" \ No newline at end of file diff --git a/.ddev/web-build/Dockerfile.sphinx b/.ddev/web-build/Dockerfile.sphinx new file mode 100644 index 00000000..cac1bebf --- /dev/null +++ b/.ddev/web-build/Dockerfile.sphinx @@ -0,0 +1,16 @@ +# Update package list and install Python 3 tools: pip and venv +RUN apt-get update && apt-get install -y python3-pip python3-venv + +# Define the virtual environment location and create it +ENV VENV_DIR=/opt/mautic-docs-venv +RUN python3 -m venv $VENV_DIR + +# Copy Python dependencies into the container and install them in the virtualenv +COPY requirements.txt /tmp/requirements.txt +RUN . $VENV_DIR/bin/activate && pip install --upgrade pip && pip install -r /tmp/requirements.txt + +# Ensure the virtualenv's bin directory is added to PATH so that its tools (like sphinx-build) are accessible in all contexts +ENV PATH="$PATH:/opt/mautic-docs-venv/bin" + +# Persist the updated PATH for interactive shells (e.g., when using `ddev ssh`) +RUN echo 'export PATH="$PATH:$VENV_DIR/bin"' > /etc/profile.d/venv-path.sh \ No newline at end of file diff --git a/.ddev/web-build/requirements.txt b/.ddev/web-build/requirements.txt new file mode 100644 index 00000000..f247dee7 --- /dev/null +++ b/.ddev/web-build/requirements.txt @@ -0,0 +1,11 @@ +# File: docs/requirements.txt + +# Defining the exact version will make sure things don't break +sphinx==8.0.2 +sphinx_rtd_theme==3.0.0 +readthedocs-sphinx-search==0.3.2 +rstcheck==6.2.4 +myst-parser==4.0.0 +linkify-it-py==2.0.3 +esbonio==0.16.5 +attrs==24.2.0 diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..a0bc34d4 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,21 @@ +{ + "image": "python:3.11-bookworm", + "features": { + "ghcr.io/devcontainers/features/common-utils:2": {} + }, + "customizations": { + "vscode": { + "settings": { + "python.defaultInterpreterPath": "/usr/local/bin/python" + }, + "extensions": [ + "ms-python.python", + "swyddfa.esbonio", + "lextudio.restructuredtext", + "eamodio.gitlens", + "trond-snekvik.simple-rst" + ] + } + }, + "postCreateCommand": "chmod +x .devcontainer/setup-project.sh && .devcontainer/setup-project.sh" +} diff --git a/.devcontainer/setup-project.sh b/.devcontainer/setup-project.sh new file mode 100644 index 00000000..5ccd23f8 --- /dev/null +++ b/.devcontainer/setup-project.sh @@ -0,0 +1,16 @@ +#!/bin/bash +set -ex + +VALE_VERSION=3.7.1 + +# Install required packages +pip install -r docs/requirements.txt + +# Required for Vale +pip install rst2html rstcheck + +# Install Vale +mkdir -p /tmp/vale +curl -sSL https://github.com/errata-ai/vale/releases/download/v${VALE_VERSION}/vale_${VALE_VERSION}_Linux_64-bit.tar.gz | tar -xz -C /tmp/vale +sudo install -o root -g root -m 0755 /tmp/vale/vale /usr/local/bin/vale +rm -rf /tmp/vale \ No newline at end of file diff --git a/.github/styles/Mautic/FeatureList.yml b/.github/styles/Mautic/FeatureList.yml index 1a4dff00..a83f4872 100644 --- a/.github/styles/Mautic/FeatureList.yml +++ b/.github/styles/Mautic/FeatureList.yml @@ -45,6 +45,8 @@ swap: point actions: Point Actions point triggers: Point Triggers points: Points + group: Group + groups: Groups plugin: Plugin plugins: Plugins report: Report diff --git a/.github/styles/Vocab/Mautic/accept.txt b/.github/styles/config/vocabularies/Mautic/accept.txt similarity index 100% rename from .github/styles/Vocab/Mautic/accept.txt rename to .github/styles/config/vocabularies/Mautic/accept.txt diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 523c50c5..60113cd2 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -1,25 +1,29 @@ name: Linting on: - # Note: onlyAnnotateModifiedLines only works correctly on PRs! - # If you need to run checks on push as well, create a separate workflow file. pull_request: jobs: prose: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 # See https://github.com/errata-ai/vale-action/issues/128 before upgrading steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 + - uses: actions/setup-python@v4 + with: + python-version: '3.x' + cache: 'pip' + + - name: Install Python dependencies + run: pip3 install -r docs/requirements.txt + - name: Vale - uses: errata-ai/vale-action@master + uses: errata-ai/vale-action@reviewdog with: - # We can modify these styles as we want - styles: | - https://github.com/errata-ai/Google/releases/latest/download/Google.zip - onlyAnnotateModifiedLines: true + # Please keep version in sync with the version in .gitpod.Dockerfile for a consistent experience + version: 3.7.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -27,9 +31,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: '3.x' cache: 'pip' @@ -43,4 +47,4 @@ jobs: - name: Check links working-directory: docs - run: make checklinks + run: make checklinks \ No newline at end of file diff --git a/.gitignore b/.gitignore index a8c18321..828494f8 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,12 @@ # Created by https://www.toptal.com/developers/gitignore/api/python,jupyternotebooks # Edit at https://www.toptal.com/developers/gitignore?templates=python,jupyternotebooks +### PHPStorm ### +.idea + +### Mac OS ### +.DS_Store + ### JupyterNotebooks ### # gitignore template for Jupyter Notebooks # website: http://jupyter.org/ @@ -152,4 +158,4 @@ dmypy.json # Cython debug symbols cython_debug/ -# End of https://www.toptal.com/developers/gitignore/api/python,jupyternotebooks +# End of https://www.toptal.com/developers/gitignore/api/python,jupyternotebooks \ No newline at end of file diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 00000000..8604ecbf --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,20 @@ +FROM python:3.11 + +# Please keep version in sync with the version in .github/workflows/linting.yml for a consistent experience +ENV VALE_VERSION=3.7.1 + +WORKDIR /workspace + +# Needed for Vale (rst2html) and reStructuredText (rstcheck) +RUN pip install rst2html rstcheck + +RUN mkdir -p vale && cd vale && wget https://github.com/errata-ai/vale/releases/download/v${VALE_VERSION}/vale_${VALE_VERSION}_Linux_64-bit.tar.gz && \ + tar -xf vale_${VALE_VERSION}_Linux_64-bit.tar.gz && cp /workspace/vale/vale /usr/local/bin/vale && cd ../ + +# /home/gitpod/.local/bin ensures that Python packages like rstcheck can be found +ENV PATH=/home/gitpod/.local/bin:$PATH + +# Create the gitpod user. UID must be 33333. https://www.gitpod.io/docs/configure/workspaces/workspace-image#use-a-custom-dockerfile +RUN useradd -l -u 33333 -G sudo -md /home/gitpod -s /bin/bash -p gitpod gitpod + +USER gitpod \ No newline at end of file diff --git a/.gitpod.yml b/.gitpod.yml index 1ac066c6..bdc51320 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,6 +1,5 @@ -# Since Gitpod doesn't support caching custom Dockerfiles yet, we temporarily -# use this once which has Python 3.9 and Vale preinstalled. -image: dennisameling/python-vale:latest +image: + file: .gitpod.Dockerfile tasks: - before: pip install -r docs/requirements.txt @@ -9,26 +8,7 @@ tasks: vscode: extensions: - ms-python.python - - lextudio.restructuredtext + - lextudio.restructuredtext@190.1.4 # See https://github.com/mautic/user-documentation/pull/334#issuecomment-2405922370 before upgrading. - trond-snekvik.simple-rst - errata-ai.vale-server - - eamodio.gitlens - -github: - prebuilds: - # enable for the master/default branch (defaults to true) - master: true - # enable for all branches in this repo (defaults to false) - branches: true - # enable for pull requests coming from this repo (defaults to true) - pullRequests: true - # enable for pull requests coming from forks (defaults to false) - pullRequestsFromForks: true - # add a check to pull requests (defaults to true) - addCheck: false - # add a "Review in Gitpod" button as a comment to pull requests (defaults to false) - addComment: false - # add a "Review in Gitpod" button to the pull request's description (defaults to false) - addBadge: true - # add a label once the prebuild is ready to pull requests (defaults to false) - addLabel: false + - eamodio.gitlens \ No newline at end of file diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..bc463c39 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,29 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-20.04 + tools: + python: "3.11" + # You can also specify other tool versions: + # nodejs: "16" + # rust: "1.55" + # golang: "1.17" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py + +# If using Sphinx, optionally build your docs in additional formats such as PDF +# formats: +# - pdf + +# Optionally declare the Python requirements required to build your docs +python: + install: + - requirements: docs/requirements.txt \ No newline at end of file diff --git a/.readthedocs.yaml b/.readthedocs.yaml deleted file mode 100644 index 416e26bf..00000000 --- a/.readthedocs.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# .readthedocs.yaml -# Read the Docs configuration file -# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details - -# Required -version: 2 - -# Set the version of Python and other tools you might need -build: - os: ubuntu-20.04 - tools: - python: "3.9" - # You can also specify other tool versions: - # nodejs: "16" - # rust: "1.55" - # golang: "1.17" - -# Build documentation in the docs/ directory with Sphinx -sphinx: - configuration: docs/conf.py - -# If using Sphinx, optionally build your docs in additional formats such as PDF -# formats: -# - pdf - -# Optionally declare the Python requirements required to build your docs -python: - install: - - requirements: docs/requirements.txt \ No newline at end of file diff --git a/.vscode/welcome.md b/.vscode/welcome.md index 0a805440..fca312be 100644 --- a/.vscode/welcome.md +++ b/.vscode/welcome.md @@ -1,9 +1,9 @@ -Welcome to the Mautic end user documentation editor! +Welcome to the Mautic End User documentation editor., open -We've already set up everything you need. To get started, follow these steps: -1. Open a file in the `docs/` folder (files that end with `.rst` are docs files) -2. Click the magnifier icon in the top right corner to see a LIVE preview of the file you're editing +Everything you need is already set up. To get started, follow these steps: +1. Open a file in the `docs/` folder - files that end with `.rst` are docs files. +2. Click the magnifier icon in the top right corner to see a live preview of the file you're editing. Pretty cool, right? -Happy writing! +Happy writing. diff --git a/README.md b/README.md index 02d7e1d5..d2d8ea6f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ [![Documentation Status][RTD badge URL]][RTD URL] + +[![All Contributors](https://img.shields.io/badge/all_contributors-8-orange.svg?style=flat-square)](#contributors-) + [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/mautic/user-documentation) @@ -14,6 +17,40 @@ We aim to move all aspects of the end-user documentation to Read the Docs. For more background, our end goal, and to let us know if you want to help, please join the Education Team channel (#t-education) on Slack (get an invite at https://mautic.org/slack). Thanks in advance! +## Making a PR + +To make a small change to the base language files for the documentation, use the 'edit file' button on the documentation and commit your changes. This creates a new Pull Request. + +To make more complex changes, follow the steps below: + +1. Install a code editor. [Visual Studio Code](https://code.visualstudio.com) is recommended as it automatically installs all the extensions you need. +2. Install [Github CLI](https://cli.github.com/) which simplifies Git commands. +3. Create a working folder on your local computer. +4. Open a terminal and navigate to that folder using the command `cd `. +5. Fork the `mautic/user-documentation` repository on GitHub by clicking on the fork button at the top right. +6. Once forked, if you know your way around Git and you are are writing documentation for something which is specific to the latest version of Mautic, you should branch from `main`. + +If you are writing documentation for a feature which is coming in a future release - e.g. 5.0 - then branch off the relevant branch for that release, which should generally speaking match the branch used in the main mautic/mautic repository - e.g. `5.x`. +7. Type `gh repo clone [your-forked-repo-name]/user-documentation` to clone your forked repository to your local computer. +8. Open the folder `user-documentation` that is created in your editor. +9. At the bottom left of your screen, you will see the default branch called 'main' is showing as your active branch. Click this, and a box will appear at the top of the page allowing you to 'create a new branch'. Type a name which relates to the work you plan to do. +10. Make your desired changes by editing the files, which you can locate on the left pane. +11. Use the Source Control icon on the menu on the left to view changed files. Click the plus icon next to them to 'stage' them for committing. This lets you save and describe changes in chunks, making it easier to reverse specific changes in the future. +12. If editing text, ensure to run necessary commands to update files for translations on Transifex and include those updates in your PR. +13. Commit all your changes, then click the 'Publish Branch' button. This action might prompt you to create a fork of the repository if not done earlier. +14. Under the Source Control icon, navigate to the 'Branches' section. Find your branch, hover over the 'Create pull request' icon, and click it. +15. This action will direct you to the GitHub web interface where you can add an appropriate title and description for your proposed changes. +16. If reviewers request changes, switch back to the branch (as explained in step 9). Implement the necessary changes and follow steps 11-14 again. After updating, commit and push your changes, then notify the reviewer to check the updated content. + +### Generating translations files + +Currently, we manually create the translation files necessary for Transifex to inform translators that there are changes to the content. + +To do this, run the following at the command line after following the steps below to build the documentation locally. + +1. Run the command in the /docs folder `sphinx-build -b gettext . docs_translations` +2. Commit the files created with your pull request + ## Build documentation locally - [RST Syntax Cheatsheet][RST Cheatsheet] @@ -25,9 +62,10 @@ The following provides instructions for how to build docs locally for visualizat 1. Install Python 3 for your OS if not already installed 2. Install Sphinx `pip install sphinx` 3. Install sphinx-rtd-theme `pip install sphinx-rtd-theme` -4. CD into the docs directory `cd [path to this repo]/docs` -5. Run `make html` -6. This will generate HTML in docs/build/html. Setup a web server with the web root as docs/build/html or open docs/build/html/index.html in a browser. +4. Install MyST Parser `pip install myst_parser` +5. CD into the docs directory `cd [path to this repo]/docs` +6. Run `make html` +7. This will generate HTML in docs/build/html. Setup a web server with the web root as docs/build/html or open docs/build/html/index.html in a browser. ### Vale Before pushing, run Vale and address suggestions and errors as applicable. @@ -49,4 +87,34 @@ You can automatically build changes to rst files using a file watcher. [RST Cheatsheet]: [Sphinx Template]: [Sphinx Demo]: -[Vale]: \ No newline at end of file +[Vale]: +## Contributors ✨ + +Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): + + + + + + + + + + + + + + + + + + + +
Gustavo Kennedy Renkel
Gustavo Kennedy Renkel

🌍
Roman
Roman

🌍
Tomasz Kowalczyk
Tomasz Kowalczyk

📖
kukis2107
kukis2107

🌍
putzwasser
putzwasser

👀
Moongazer
Moongazer

📖
Patryk Gruszka
Patryk Gruszka

📖
Emily
Emily

📖
+ + + + + + +This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! diff --git a/docs/.tx/config b/docs/.tx/config deleted file mode 100644 index 6c93d7a7..00000000 --- a/docs/.tx/config +++ /dev/null @@ -1,146 +0,0 @@ -[main] -host = https://www.transifex.com - -[mautic-end-user-documentation.docs_translations_users_roles] -file_filter = locale//LC_MESSAGES/users_roles.po -source_file = docs_translations/users_roles.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_stages] -file_filter = locale//LC_MESSAGES/stages.po -source_file = docs_translations/stages.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_builders] -file_filter = locale//LC_MESSAGES/builders.po -source_file = docs_translations/builders.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_contacts] -file_filter = locale//LC_MESSAGES/contacts.po -source_file = docs_translations/contacts.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_segments] -file_filter = locale//LC_MESSAGES/segments.po -source_file = docs_translations/segments.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_categories] -file_filter = locale//LC_MESSAGES/categories.po -source_file = docs_translations/categories.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_points] -file_filter = locale//LC_MESSAGES/points.po -source_file = docs_translations/points.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_marketplace] -file_filter = locale//LC_MESSAGES/marketplace.po -source_file = docs_translations/marketplace.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_companies] -file_filter = locale//LC_MESSAGES/companies.po -source_file = docs_translations/companies.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_translations] -file_filter = locale//LC_MESSAGES/translations.po -source_file = docs_translations/translations.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_components] -file_filter = locale//LC_MESSAGES/components.po -source_file = docs_translations/components.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_channels] -file_filter = locale//LC_MESSAGES/channels.po -source_file = docs_translations/channels.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_plugins] -file_filter = locale//LC_MESSAGES/plugins.po -source_file = docs_translations/plugins.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_queue] -file_filter = locale//LC_MESSAGES/queue.po -source_file = docs_translations/queue.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_search] -file_filter = locale//LC_MESSAGES/search.po -source_file = docs_translations/search.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_configuration] -file_filter = locale//LC_MESSAGES/configuration.po -source_file = docs_translations/configuration.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_overview] -file_filter = locale//LC_MESSAGES/overview.po -source_file = docs_translations/overview.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_authentication] -file_filter = locale//LC_MESSAGES/authentication.po -source_file = docs_translations/authentication.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_index] -file_filter = locale//LC_MESSAGES/index.po -source_file = docs_translations/index.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_reports] -file_filter = locale//LC_MESSAGES/reports.po -source_file = docs_translations/reports.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_getting_started] -file_filter = locale//LC_MESSAGES/getting_started.po -source_file = docs_translations/getting_started.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_themes] -file_filter = locale//LC_MESSAGES/themes.po -source_file = docs_translations/themes.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_dashboard] -file_filter = locale//LC_MESSAGES/dashboard.po -source_file = docs_translations/dashboard.pot -source_lang = en -type = PO - -[mautic-end-user-documentation.docs_translations_campaigns] -file_filter = locale//LC_MESSAGES/campaigns.po -source_file = docs_translations/campaigns.pot -source_lang = en -type = PO diff --git a/docs/authentication/authentication.rst b/docs/authentication/authentication.rst index 3bf881e1..fd48f39d 100644 --- a/docs/authentication/authentication.rst +++ b/docs/authentication/authentication.rst @@ -48,6 +48,23 @@ The IDP may ask for the following settings: #. Custom attributes - Mautic requires three custom attributes in the IDP responses for the User Email, first name and last name. Username is also supported but is optional. Configure the attribute names used by the IDP in Mautic's Configuration > User/Authentication Settings under the 'Enter the names of the attributes the configured IDP uses for the following Mautic User fields' section. +Example: Azure SAML SSO +======================= + +1) Register new Enterprise applications by navigating to ``Create your own Application`` and then ``Integrate any other application you don't find in the gallery (Non-gallery)`` +2) Go to Single Sign-On +3) ``Identifier (Entity ID)`` - this is the site URL located at the top of User/Authentication Settings. Copy this exactly as is to the IDP. +4) ``Reply URL (Assertion Consumer Service URL)`` - Use ``https://example.com/s/saml/login_check`` +5) Download Federation Metadata XML from 3. SAML Certificates +6) Upload the downloaded Federation Metadata XML to Mautic +7) X.509-Certificate isn't required +8) Use the following for the custom attributes fields: + +E-Mail: ``http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress`` +First Name: ``http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname`` +Last Name: ``http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname`` +Username (optional): ``http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress`` + Logging in ========== @@ -62,4 +79,4 @@ To turn off SAML, click the Remove link to the right of the Identity provider me .. image:: images/authentication-settings.png :width: 800 - :alt: Screenshot of the authentication settings section \ No newline at end of file + :alt: Screenshot of the authentication settings section diff --git a/docs/builders/email_landing_page.rst b/docs/builders/email_landing_page.rst index 31875042..dd159286 100644 --- a/docs/builders/email_landing_page.rst +++ b/docs/builders/email_landing_page.rst @@ -127,6 +127,35 @@ If you search through the list of available Themes, the new MJML Themes ``Brienz To learn more about creating Themes please :doc:`check the documentation`. +Custom fonts +************ + +From Mautic 5.x you can extend the Style Manager > Typography > Fonts list to include custom fonts. + +.. image:: images/editorfonts.jpg + :width: 280 + :alt: Screenshot of the Fonts in Style Manager > Typography + +You define options as elements of the ``'editor_fonts'`` array in the local configuration file - in most cases located in ``app/config/local.php``. The font should have a unique name and a valid CSS style URL. See example below: + +.. code-block:: php + + array( + '0' => array( + 'name' => 'Smokum', + 'font' => 'Smokum, cursive', + 'url' => 'https://fonts.googleapis.com/css2?family=Smokum&display=swap' + ), + '1' => array( + 'name' => 'Sofia', + 'font' => 'Sofia, sans-serif', + 'url' => 'https://fonts.googleapis.com/css?family=Sofia' + ) + ), + + Reporting bugs *************** diff --git a/docs/builders/images/editorfonts.jpg b/docs/builders/images/editorfonts.jpg new file mode 100644 index 00000000..efb859d6 Binary files /dev/null and b/docs/builders/images/editorfonts.jpg differ diff --git a/docs/campaigns/campaign_builder.rst b/docs/campaigns/campaign_builder.rst index 0f4781bc..ce629ed3 100644 --- a/docs/campaigns/campaign_builder.rst +++ b/docs/campaigns/campaign_builder.rst @@ -58,7 +58,7 @@ The actions that Mautic offers in a Campaign include: * - **Add Company action** - Associates a Contact with a Company and sets the Company as the primary Company for the Contact. * - **Adjust Contact Points** - - Adds or subtracts Points from the Contact’s Point total. + - Adds or subtracts Points from the Contact’s Point total or Group. * - **Change Campaigns** - Removes a Contact from the existing Campaign, moves them into another Campaign, restarts the current Campaign or a combination of these. You must remove a Contact from a Campaign before restarting the Campaign. * - **Change Contact's Stage** @@ -205,6 +205,8 @@ Here are the different conditions that Mautic offers in the Campaign Builder: - Checks if the Contact is a member of selected Segments. * - **Contact Tags** - Checks if specified Tags are on the Contact record. + * - **Contact points** + - Checks if the Contact has a certain number of Points or a Group score. * - **Form field value** - Checks if values submitted for a selected field on a selected Form matches specified criteria. * - **Has active notification** diff --git a/docs/channels/emails.rst b/docs/channels/emails.rst index 900db8bd..d1f33b1e 100644 --- a/docs/channels/emails.rst +++ b/docs/channels/emails.rst @@ -225,15 +225,91 @@ Marketers can place the signature into an Email using the ``{signature}`` token. Email delivery ############## -Mautic delivers Emails using the method defined by the system administrator. If you are the system administrator for your Company, then you need to add the Email protocol for your Mautic instance to use. Mautic integrates with any Email service provider which offers SMTP mail servers as well as several distinct services such as: +As Mautic uses the :xref:`Symfony Mailer` library since v5, it supports all Symfony Mailer core plugins out of the box. Transports for other Email services might be found on GitHub or Packagist. -- :xref:`Mandrill` -- :xref:`GMail` -- :xref:`Sendgrid` -- :xref:`Mailjet` -- :xref:`Postmark` -- :xref:`Sendmail` -- :xref:`Amazon SES`. +SMTP transport +************** + +The SMTP transport is the default transport used for sending Emails with Mautic. It's configured in the Mautic configuration under the Email Settings tab. The configuration is the same as in the :xref:`Symfony Mailer` documentation. + +Mautic now uses a specific way of providing the connection details for Email transports to interpret, which is called a Data Source Name, or DSN. This is the example Data Source Name configuration mentioned in the :xref:`Symfony Mailer` documentation for SMTP: + +.. code-block:: shell + + smtp://user:pass@smtp.example.com:port + +Mautic creates this automatically from the values entered in the Email configuration: + +.. image:: images/emails/smtp-dsn.png + :width: 400 + :alt: SMTP API DSN example + +.. list-table:: Example DSN ``smtp://user:pass@smtp.example.com:port/path?option1=value1&option2=value2`` explained + :widths: 10 20 150 + :header-rows: 1 + :stub-columns: 1 + + * - DSN part + - Example + - Explanation + * - Scheme + - smtp + - Defines which email transport (plugin) will handle the email sending. It also defines which other DSN parts must be present. + * - User + - john + - Some transport wants username and password to authenticate the connection. Some public or private key. Some just API key. + * - Password + - pa$$word + - As mentioned above, read documentation for your particular transport and fill in the fields that are required. For SMPT this is for password. + * - Host + - smtp.mydomain.com + - For SMTP this is the domain name where your SMTP server is running. Other transports may have the domain handled inside it so many wants to put just ``default`` text here. + * - Path + - any/path + - This is usually empty. For SMTP this may be the path to the SMTP server. For other transports this may be the path to the API endpoint. + * - Port + - 465 + - Important for SMTP. The port value defines which encryption is used. This is usually 465 for SSL or 587 for TLS. Avoid using port 25 for security reasons. For other transports this may be the port to the API endpoint. + * - Options + - timeout=10 + - This is optional. This may be the timeout for the connection or similar configuration. The config form will allow you to create multiple options. + +.. note:: + Use the Mautic's global configuration to paste in the DSN information, especially the API keys and passwords. The values must be URL-encoded, and the configuration form does that for you. If you are pasting DSN settings directly into the config/local.php file, you must URL-encode the values yourself. + + +.. vale off + +Example API transport installation + +.. vale on + +********************************** +.. warning:: + Installing Symfony Transports is possible when you've :doc:`installed Mautic via Composer `. + +If you want to use :xref:`Sendgrid` API instead of SMTP to send Emails, for example, you can install the official Symfony Sendgrid Transport by running the following command that is mentioned along others in the :xref:`Symfony Mailer` documentation. + +.. code-block:: shell + + composer require symfony/sendgrid-mailer + +After that, you can configure the transport in the Mautic configuration. The example DSN is again mentioned in the :xref:`Symfony Mailer` documentation along with other transports. In the example of using the Sendgrid API, the DSN looks like this: + +.. code-block:: shell + + sendgrid+api://KEY@default + +This is how it would be set up in Mautic's Email configuration: + + .. image:: images/emails/sendgrid-api-dsn.png + :width: 400 + :alt: Sendgrid API DSN example + +To replace the Sendgrid API key, add it to the relevant field in the Email configuration and save. Mautic now uses the Sendgrid API to send Emails. + +.. warning:: + It's a nice perk that Mautic can use any transport provided by Symfony Mailer. However, be aware that such transports (from Symfony) don't support batch sending, even via API. They only send one email per request, as opposed to a thousand emails per request as is the case with some Mautic transports, which can make them slow at scale. They also don't support transport callback handling used for bounce management. If you plan to send larger volumes of Emails or need to use features which require callback handling, please consider using Email transports built specifically for such use. These plugins are available in the :doc:`Mautic Marketplace `. The system can either send Emails immediately or queue them for processing in batches by a :doc:`cron job `. @@ -249,7 +325,7 @@ Mautic works most effectively with high send volumes if you use the queued deliv .. code-block:: shell - php /path/to/mautic/bin/console mautic:email:process + php /path/to/mautic/bin/console messenger:consume email_transport Some hosts may have limits on the number of Emails sent during a specified time frame and/or limit the execution time of a script. If that's the case for you, or if you just want to moderate batch processing, you can configure batch numbers and time limits in Mautic's Configuration. See the :doc:`cron job documentation ` for more specifics. @@ -342,225 +418,8 @@ If you select an Unsubscribe folder, Mautic also appends the Email as part of th Webhook bounce management ************************* -.. vale off - -Elastic Email Webhook -===================== - -.. vale on - -1. Login to your Elastic Email account and go to Settings -> Notification. - -2. Fill in the Notification URL as ``https://mautic.example.com/mailer/elasticemail/callback`` - -3. Check these actions: unsubscribed, complaints, bounce/error - -.. image:: images/bounce_management/elasticemail_webhook_1.png - :width: 400 - :alt: Screenshot showing Elastic Email Webhook settings - -Useful resources -~~~~~~~~~~~~~~~~ - -- :xref:`Elastic Support` - Elastic Email's Help desk -- :xref:`Getting Started with Elastic` - Getting Started resources from Elastic Email - -.. vale off - -Amazon SES Webhook -================== - -.. vale on - -Mautic supports the bounce and complaint management from Amazon Simple Email Service (Amazon SES). - -1. Go to the Amazon Simple Notification Service - SNS - and create a new topic: - -.. image:: images/bounce_management/amazon_webhook_1.png - :width: 400 - :alt: Screenshot showing Amazon SNS create new topic - -.. image:: images/bounce_management/amazon_webhook_2.png - :width: 400 - :alt: Screenshot showing naming your SNS topic - -2. Click on the newly created topic to create a subscriber - -.. image:: images/bounce_management/amazon_webhook_3.png - :width: 400 - :alt: Screenshot showing go to the topic - -.. image:: images/bounce_management/amazon_webhook_4.png - :width: 400 - :alt: Screenshot showing new subscriber - -3. Enter the URL to the Amazon Webhook on your Mautic installation. - -.. note:: - When using the **SMTP method**, the callback URL is your Mautic URL followed by ``/mailer/amazon/callback``. - - When using the **API method** (available since Mautic 3.2), the callback URL is your Mautic URL followed by ``/mailer/amazon_api/callback``. - - .. image:: images/bounce_management/amazon_webhook_5.png - :width: 400 - :alt: Enter URL in Mautic - -1. The subscriber is in the pending state until it's confirmed. SES calls your Amazon Webhook with a ``SubscriptionConfirmation`` request including a callback URL. To confirm, Mautic sends a request back to this callback URL to validate the subscription. Therefore make sure your Mautic installation can connect to the internet, otherwise the subscription remains in the pending state and won't work. If your Webhook is https, you also need to make sure that your site is using a valid SSL certificate which is verifiable by Amazon. - -Check the log file for more information. If you are having problems getting the subscription out of the pending state, it may also help to configure the topic's 'Delivery status logging' settings, so that delivery status (at least for http/s) gets logged to CloudWatch. Then you can visit the Logs section of the CloudWatch Management Console and see the exact details of delivery failures. For example, an invalid SSL certificate might result in an event like the following appearing in the CloudWatch logs: - -.. code-block:: javascript - - { - "notification": { - "messageId": "337517be-f32c-4137-bc8d-93dc29f45ff9", - "topicArn": "arn:aws:sns:eu-west-1:012345678901:Mautic", - "timestamp": "2019-05-31 15:34:13.687" - }, - "delivery": { - "deliveryId": "a5dab35d-83f9-53c3-8ca6-e636c82668d4", - "destination": "https://mautic.example.com/mailer/amazon/callback", - "providerResponse": "SSLPeerUnverifiedException in HttpClient", - "dwellTimeMs": 42266, - "attempts": 3 - }, - "status": "FAILURE" - } - - .. image:: images/bounce_management/amazon_webhook_6.png - :width: 400 - :alt: Screenshot showing confirmation pending - - 5. The last step is to configure Amazon SES to deliver bounce and complaint messages using our SNS topic. - - .. image:: images/bounce_management/amazon_webhook_7.png - :width: 400 - :alt: Screenshot showing the configuring of SES - - .. image:: images/bounce_management/amazon_webhook_8.png - :width: 400 - :alt: Screenshot showing the selection of the SNS topic - -.. vale off - -Mandrill Webhook -================ - -.. vale on - -Mautic supports a few of Mandrill's Webhooks for bounces. - -1. Login to your Mandrill account and go to Settings -> Webhooks - - .. image:: images/bounce_management/mandrill_webhook_1.png - :width: 400 - :alt: Screenshot showing Mandrill Webhooks - -2. Click Add a Webhook - - .. image:: images/bounce_management/mandrill_webhook_2.png - :width: 400 - :alt: Screenshot showing addition of Mandrill Webhooks - -.. vale off - -Mautic supports the following Webhooks: message is bounced, message is soft-bounced, message is rejected, message is marked as spam and message recipient unsubscribes. - -.. vale on - -1. Fill in the ``Post To URL`` as ``https://mautic.example.com/mailer/mandrill/callback`` then click Create Webhook. - -2. Click Custom Metadata and create two new metadata fields: ``hashId`` and ``contactId`` - - .. image:: images/bounce_management/mandrill_webhook_5.png - :width: 400 - :alt: Screenshot showing addition of metadata - - .. image:: images/bounce_management/mandrill_webhook_4.png - :width: 400 - :alt: Screenshot showing addition of metadata - -.. vale off - -Mailjet Webhook -=============== - -.. vale on - -Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any configuration, you'll need to create an account on :xref:`Mailjet`. - -1. Login to your Mailjet account and go to Account > Event tracking/triggers - - .. image:: images/bounce_management/mailjet_webhook_1.png - :width: 400 - :alt: Screenshot showing Mailjet Webhooks - -2. On the event type list, select the one you want to link to your Mautic account +Since Mautic 5 all the Email transports use the same Webhook (sometimes called callback) URL: ``https://mautic.example.com/mailer/callback``. Please follow the documentation for the specific Email transport you've installed to get more information about the Webhook configuration. - .. image:: images/bounce_management/mailjet_webhook_2.png - :width: 400 - :alt: Screenshot showing adding Webhooks - -.. vale off - -Mautic supports the following webhooks: message is bounced, message is blocked, message is spam. - -.. vale on - -3. Fill in the URL boxes as ``https://mautic.example.com/mailer/mailjet/callback``. - -.. vale off - -SparkPost Webhook -================= -1. Login to your SparkPost account and go to Account -> Webhooks. - - .. image:: images/bounce_management/sparkpost_webhook_1.png - :width: 400 - :alt: Screenshot showing SparkPost webhooks - -2. Click the New Webhook button top right - - .. image:: images/bounce_management/sparkpost_webhook_2.png - :width: 400 - :alt: Screenshot showing new Webhooks - -3. Fill in the Target URL as ``https://mautic.example.com/mailer/sparkpost/callback`` - -4. Select the following Events - - .. image:: images/bounce_management/sparkpost_webhook_2.png - :width: 400 - :alt: Screenshot showing events - -SendGrid Webhook -================ - -.. vale on - -1. Login to your SendGrid account and go to Settings > Mail Setting > Mail Settings - - .. image:: images/bounce_management/sendgrid_webhook_1.png - :width: 400 - :alt: Screenshot showing SendGrid Webhooks - -.. vale off - -2. Fill in the Target URL as `https://mautic.example.com/mailer/sendgrid_api/callback` - -.. vale on - -3. Select the following Events - - .. image:: images/bounce_management/sendgrid_webhook_2.png - :width: 400 - :alt: Screenshot showing Events - -4. Save setting - on the right side of "Event Notification" row: - - .. image:: images/bounce_management/sendgrid_webhook_3.png - :width: 400 - :alt: Screenshot showing save settings .. vale off diff --git a/docs/components/assets.rst b/docs/components/assets.rst index 199e357e..3525d825 100644 --- a/docs/components/assets.rst +++ b/docs/components/assets.rst @@ -35,6 +35,15 @@ Navigate to Components > Assets. Mautic lists any Assets you have previously cre You create Assets by uploading local resources on your computer, or by locating the Asset from a remote storage host such as Amazon S3. There are limitations by size due to the settings of your server - any such restriction may display as a warning message in the file upload section. +Add UTM to Asset +~~~~~~~~~~~~~~~~~~ +UTM parameters appended to the download link means that UTM data is available in the resource download Report. + +.. code-block:: php + +``/asset/{id}:{name}?utm_source=test&utm_medium=test&utm_campaign=test&utm_id=test&utm_term=test&utm_content=test`` + + .. vale off Uploading an Asset @@ -93,7 +102,7 @@ Instead of uploading a file from your computer, you can either provide a link to .. vale off Viewing an Asset -~~~~~~~~~~~~~~~~ +================ .. vale on @@ -111,7 +120,7 @@ To ensure that Contacts are providing you with valid Email addresses for high-va .. vale off Editing an Asset -~~~~~~~~~~~~~~~~ +================ .. vale on @@ -120,7 +129,7 @@ You can edit an Asset by clicking on the 'edit' button while viewing the Asset, .. vale off Deleting an Asset -~~~~~~~~~~~~~~~~~ +================= .. vale on @@ -128,4 +137,5 @@ It's possible to delete an Asset by clicking on the 'delete' button while viewin .. warning:: Once deleted, you can't retrieve an Asset, and statistics relating to the number of downloads for that Asset are no longer be available. Contact Points accumulated as a result of accessing the resource remain. It's recommended where possible to unpublish Assets which are no longer in use - in future there may be an archive feature. + diff --git a/docs/conf.py b/docs/conf.py index c18e528b..e8a528af 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,6 +59,10 @@ # -- Options for EPUB output epub_show_urls = 'footnote' +# -- Internationalisation configuration + +locale_dirs = ['locale'] + # Please add links here that do not pass the "make checklinks" check. # A little context on the reason for ignoring is greatly appreciated! @@ -70,4 +74,17 @@ r"https://support.twilio.com/*", # This is a demo URL and should not be checked r"https://api-ssl.bitly.com/*", + # This domain blocks the checker (403 Client Error). + r"https://linuxize.com/*", + # The GitHub Search UI requires users to be authenticated with session cookies, which we can't set up programmatically + r"https://github.com/search*", + # Requires authentication. + r"https://www.maxmind.com/en/accounts/current*", + # 403 client error from these domains + r"https://www.maxmind.com/en/home", + r"https://www.maxmind.com/en/geolite2/signup", + r"https://support.maxmind.com/hc/en-us/search*", + r"https://dev.mysql.com/doc/refman/5.7/en/regexp.html", + # 400 client error from this domain + r"https://developers.facebook.com/products/facebook-login/", ] \ No newline at end of file diff --git a/docs/configuration/command_line_interface.rst b/docs/configuration/command_line_interface.rst index 2f7e24a4..889c9979 100644 --- a/docs/configuration/command_line_interface.rst +++ b/docs/configuration/command_line_interface.rst @@ -21,7 +21,7 @@ Options .. vale off .. list-table:: - :widths: 100 100 + :widths: 50 50 :header-rows: 1 * - Options @@ -71,93 +71,111 @@ These are the commands you may need to use in relation to your Mautic instance. .. vale off .. list-table:: - :widths: 100 100 + :widths: 25 50 25 :header-rows: 1 * - Command - Description - * - mautic:assets:generate + - Aliases + * - ``mautic:assets:generate`` - Combines and minifies Asset files (CSS/JS) from each bundle into single production files - * - mautic:broadcasts:send + - + * - ``mautic:broadcasts:send`` - Process Contacts pending to receive a Channel broadcast. - * - mautic:campaigns:execute + - + * - ``mautic:campaigns:execute`` - Execute specific scheduled events. - * - mautic:campaigns:messagequeue - - Process sending of messages queue, you can also use the alias of ``mautic:messages:send``. - * - mautic:campaigns:messages - - Process sending of messages queue, you can also use the alias of ``mautic:messages:send``. - * - mautic:campaigns:rebuild - - Rebuild Campaigns based on Contact Segments, you can also use the alias of ``mautic:messages:update``. - * - mautic:campaigns:trigger + - + * - ``mautic:campaigns:rebuild`` + - Rebuild Campaigns based on Contact Segments. + - ``mautic:campaigns:update`` + * - ``mautic:campaigns:trigger`` - Trigger timed events for published Campaigns. - * - mautic:campaigns:update - - Rebuild Campaigns based on Contact Segments, you can also use the alias of ``mautic:messages:rebuild``. - * - mautic:campaigns:validate + - + * - ``mautic:campaigns:validate`` - Validate if a Contact has been inactive for a decision and execute events if so. - * - mautic:citrix:sync + - + * - ``mautic:citrix:sync`` - Synchronizes registrant information from Citrix products - * - mautic:cache:clear + - + * - ``mautic:cache:clear`` - Clears Mautic cache, by using this command, you will erase the 10-minute Mautic cache, which contains things like segment counts and data for dashboard widgets. - * - mautic:contacts:deduplicate + - + * - ``mautic:contacts:deduplicate`` - Merge Contacts based on same unique identifiers - * - mautic:custom-field:create-column + - + * - ``mautic:custom-field:create-column`` - Creates the actual column in the table - * - mautic:email:fetch - - Fetch and process monitored Email, you can also use the alias of ``mautic:email:fetch``. - * - mautic:emails:send + - + * - ``mautic:email:fetch`` + - Fetch and process monitored Email. + - + * - ``messenger:consume email`` - Processes mail queue - * - mautic:import + - + * - ``mautic:import`` - If the CSV import is configured to run in background then this command will pick up the pending import jobs and imports the data from CSV files to Mautic. - * - mautic:integration:fetchleads - - Fetch Contacts from Integration, you can also use the alias of ``mautic:integration:synccontacts``. - * - mautic:integration:pipedrive:fetch + - + * - ``mautic:integration:fetchleads`` + - Fetch Contacts from Integration. + - ``mautic:integration:synccontacts`` + * - ``mautic:integration:pipedrive:fetch`` - Pulls the data from Pipedrive and sends it to Mautic - * - mautic:integration:pipedrive:push + - + * - ``mautic:integration:pipedrive:push`` - Pushes the data from Mautic to Pipedrive - * - mautic:integration:pushactivity - - Push Contact activity to Integration, you can also use the alias of ``mautic:integration:pushleadactivity``. - * - mautic:integration:pushleadactivity - - Push Contact activity to Integration, you can also use the alias of ``mautic:integration:pushactivity``. - * - mautic:integration:synccontacts - - Fetch Contacts from Integration, you can also use the alias of ``mautic:integration:fetchleads``. - * - mautic:install:data + - + * - ``mautic:integration:pushleadactivity`` + - Push Contact activity to Integration. + - ``mautic:integration:pushactivity`` + * - ``mautic:install:data`` - Installs data - * - mautic:iplookup:download + - + * - ``mautic:iplookup:download`` - Fetch remote datastores for IP lookup services that leverage local lookups. - * - mautic:maintenance:cleanup + - + * - ``mautic:maintenance:cleanup`` - Cleans up older data. - * - mautic:messages:send - - Process sending of messages queue, you can also use the alias of ``mautic:campaigns:messagequeue`` and ``mautic:campaigns:messages``. - * - doctrine:migrations:generate + - + * - ``mautic:messages:send`` + - Process sending of messages queue. + - ``mautic:campaigns:messagequeue``, ``mautic:campaigns:messages`` + * - ``doctrine:migrations:generate`` - Generate a blank migration class. - * - mautic:plugins:install - - Installs Plugins, you can also use the alias of ``mautic:plugins:reload``. - * - mautic:plugins:reload - - Reloads Plugins, you can also use the alias of ``mautic:plugins:install`` or ``mautic:plugins:update``. - * - mautic:plugins:update - - Updates Plugins, you can also use the alias of ``mautic:plugins:reload``. - * - mautic:queue:process + - + * - ``mautic:plugins:reload`` + - Install, reloads or updates Plugins. + - ``mautic:plugins:install``, ``mautic:plugins:update`` + * - ``mautic:queue:process`` - Process queues - * - mautic:reports:scheduler + - + * - ``mautic:reports:scheduler`` - Processes scheduler for Report's export - * - mautic:segments:rebuild - - Update Contacts in smart Segments based on new Contact data, you can also use the alias of ``mautic:segments:update``. - * - mautic:segments:update - - Update Contacts in smart Segments based on new Contact data, , you can also use the alias of ``mautic:segments:rebuild``. - * - mautic:theme:json-config + - + * - ``mautic:segments:update`` + - Update Contacts in smart Segments based on new Contact data. + - ``mautic:segments:rebuild`` + * - ``mautic:theme:json-config`` - Converts Theme config to JSON from PHP - * - mautic:unusedip:delete + - + * - ``mautic:unusedip:delete`` - Deletes IP addresses that aren't used in any other database table - * - mautic:update:apply + - + * - ``mautic:update:apply`` - Updates the Mautic app. - * - mautic:update:find + - + * - ``mautic:update:find`` - Fetches updates for Mautic - * - mautic:webhooks:process + - + * - ``mautic:webhooks:process`` - Process queued Webhook payloads - * - social:monitor:twitter:hashtags + - + * - ``social:monitor:twitter:hashtags`` - Looks at the monitoring records and finds hashtags. - * - social:monitor:twitter:mentions + - + * - ``social:monitor:twitter:mentions`` - Searches for mentioned tweets + - .. vale on @@ -165,10 +183,10 @@ Doctrine commands ================= .. list-table:: - :widths: 100 100 + :widths: 50 50 :header-rows: 1 * - Command - Description - * - doctrine:fixtures:load + * - ``doctrine:fixtures:load`` - Installs Mautic sample data, overwriting existing data. diff --git a/docs/configuration/cron_jobs.rst b/docs/configuration/cron_jobs.rst index 24c2522b..433d6f21 100644 --- a/docs/configuration/cron_jobs.rst +++ b/docs/configuration/cron_jobs.rst @@ -85,6 +85,19 @@ You can also limit the number of Contacts to process per script execution using that these messages are only added to the queue when frequency rules apply either system wide or per Contact. +.. vale off + +Custom Field cron jobs +======================= + +.. vale on + +**To keep Contacts and Company Custom Fields updated** + +.. code-block:: php + + php /path/to/mautic/bin/console mautic:custom-field:create-column + Optional ******** @@ -101,7 +114,7 @@ If the system configuration is queueing Emails, a cron job processes them. .. code-block:: php - php /path/to/mautic/bin/console mautic:emails:send + php /path/to/mautic/bin/console messenger:consume email .. vale off diff --git a/docs/configuration/images/sendgrid-api-dsn.png b/docs/configuration/images/sendgrid-api-dsn.png new file mode 100644 index 00000000..b09afe14 Binary files /dev/null and b/docs/configuration/images/sendgrid-api-dsn.png differ diff --git a/docs/configuration/images/smtp-dsn.png b/docs/configuration/images/smtp-dsn.png new file mode 100644 index 00000000..adc89381 Binary files /dev/null and b/docs/configuration/images/smtp-dsn.png differ diff --git a/docs/configuration/local_php_overview.rst b/docs/configuration/local_php_overview.rst new file mode 100644 index 00000000..552cbb93 --- /dev/null +++ b/docs/configuration/local_php_overview.rst @@ -0,0 +1,554 @@ +Local.php fields overview +######################### + +You can manage most, but not all, Mautic configurations in the User Interface. +Either way, the settings live in the ``local.php`` file. +Here are the ``local.php`` parameters for Mautic 4.4.6: + +.. list-table:: + :widths: 25 50 25 + :header-rows: 1 + + * - Parameter + - Value + - Info + * - ``allowed_extensions`` + - default: an indexed array with the values ``csv``, ``doc``, ``docx``, ``epub``, ``gif``, ``jpg``, ``jpeg``, ``mpg``, ``mpeg``, ``mp3``, ``odt``, ``odp``, ``ods``, ``pdf``, ``png``, ``ppt``, ``pptx``, ``tif``, ``tiff``, ``txt``, ``xls``, ``xlsx``, ``wav`` + - The "Allowed file extensions" parameter from the Mautic configuration :ref:`Theme settings` + * - ``anonymize_ip`` + - default: ``0`` - for 'No' + - The "Anonymize IP" parameter from the Mautic configuration :ref:`Tracking settings` + * - ``api_batch_max_limit`` + - default: ``200`` + - + * - ``api_enable_basic_auth`` + - default: ``false`` + - The "Enable http basic auth?" parameter from the Mautic configuration :ref:`API settings` + * - ``api_enabled`` + - default: ``0`` - for 'No' + - The "API enabled?" parameter from the Mautic configuration :ref:`API settings` + * - ``api_oauth2_access_token_lifetime`` + - default: ``60`` - minutes + - The "Access token lifetime in minutes" parameter from the Mautic configuration :ref:`API settings` + * - ``api_oauth2_refresh_token_lifetime`` + - default: ``14`` - days + - The "Refresh token lifetime in days" parameter from the Mautic configuration :ref:`API settings` + * - ``api_rate_limiter_cache`` + - default: an associative array with key/value ``adapter`` = ``cache.adapter.filesystem`` + - + * - ``api_rate_limiter_limit`` + - default: ``0`` + - + * - ``background_import_if_more_rows_than`` + - default: ``0`` + - The "Automatically import in the background if the CSV has more rows than defined" parameter from the Mautic configuration :ref:`Contact settings` + * - ``batch_campaign_sleep_time`` + - default: ``false`` + - + * - ``batch_sleep_time`` + - default: ``1`` + - + * - ``blacklisted_extensions`` + - default: an indexed array with the values ``php`` and ``sh`` + - + * - ``cache_path`` + - path to the cache directory + - The "Path to the cache" parameter from the Mautic configuration :ref:`General settings` + * - ``cached_data_timeout`` + - default: ``10`` - minutes + - The "Cached data timeout in minutes" parameter from the Mautic configuration :ref:`System defaults` + * - ``campaign_by_range`` + - default: ``0`` - for 'No' + - The "Use date range for all views" parameter from the Mautic configuration :ref:`Campaign settings` + * - ``campaign_notification_email_addresses`` + - default: ``null`` + - The "Email addresses to receive notifications" parameter from the Mautic configuration :ref:`Notification settings` + * - ``campaign_send_notification_to_author`` + - default: ``1`` - for 'Yes' + - The "Send notification to author" parameter from the Mautic configuration :ref:`Notification settings` + * - ``campaign_time_wait_on_event_false`` + - default: ``PT1H`` + - The "Wait time before retrying a failed action" parameter from the Mautic configuration :ref:`Campaign settings` + * - ``campaign_use_summary`` + - default: ``0`` - for 'No' + - The "Use summary statistics" parameter from the Mautic configuration :ref:`Campaign settings` + * - ``cat_in_page_url`` + - default: ``0`` - for 'No' + - The "Show category in page URL?" parameter from the Mautic configuration :ref:`Tracking settings` + * - ``clean_webhook_logs_in_background`` + - default: ``false`` + - + * - ``composer_updates`` + - default: ``0`` - for 'No' + - The "Update Mautic through Composer - BETA" parameter from the Mautic configuration :ref:`Update settings` + * - ``contact_columns`` + - default: an indexed array with values ``name``, ``email``, ``location``, ``stage``, ``points``, ``last_active`` and ``id`` + - The "Columns" parameter from the Mautic configuration :ref:`Contact list settings` + * - ``cookie_httponly`` + - default: ``false`` + - + * - ``cookie_path`` + - default: ``/`` + - + * - ``cookie_secure`` + - default: ``true`` + - + * - ``cors_restrict_domains`` + - default: ``1`` - for 'Yes' + - The "Restrict Domains" parameter from the Mautic configuration :ref:`CORS settings` + * - ``cors_valid_domains`` + - default: an empty indexed array + - The "Valid Domains" parameter from the Mautic configuration :ref:`CORS settings` + * - ``create_custom_field_in_background`` + - default: ``false`` + - + * - ``contact_unique_identifiers_operator`` + - default: ``OR`` + - The "Merge by unique fields with operator" parameter from the Mautic configuration :ref:`Contact settings` + * - ``company_unique_identifiers_operator`` + - default: ``OR`` + - The "Merge by unique fields with operator" parameter from the Mautic configuration :ref:`Company settings` + * - ``csv_always_enclose`` + - default: ``0`` - for 'No' + - The "Always quote data in CSV export" parameter from the Mautic configuration :ref:`Report settings` + * - ``date_format_dateonly`` + - default: ``F j, Y`` + - The "Date format for date only" parameter from the Mautic configuration :ref:`System defaults` + * - ``date_format_full`` + - default: ``F j, Y g:i a T`` + - The "Date format for full dates" parameter from the Mautic configuration :ref:`System defaults` + * - ``date_format_short`` + - default: ``D, M d`` + - The "Date format for short dates" parameter from the Mautic configuration :ref:`System defaults` + * - ``date_format_timeonly`` + - default ``g:i a`` + - The "Date format for time only" parameter from the Mautic configuration :ref:`System defaults` + * - ``db_backup_prefix`` + - default: ``_bak`` + - + * - ``db_backup_tables`` + - default: ``1`` + - + * - ``db_driver`` + - default: ``pdo_mysql`` + - + * - ``db_host`` + - individual + - + * - ``db_name`` + - individual + - + * - ``db_password`` + - individual + - + * - ``db_port`` + - individual + - + * - ``db_table_prefix`` + - default: ``null`` + - + * - ``db_user`` + - individual + - + * - ``debug`` + - default: ``false`` + - + * - ``default_daterange_filter`` + - default: ``-1 month`` + - The "Date Range Filter Default" parameter from the Mautic configuration :ref:`System defaults` + * - ``default_pagelimit`` + - default: ``10`` + - The "Default item limit per page" parameter from the Mautic configuration :ref:`System defaults` + * - ``default_signature_text`` + - default: ``Best regards, from name`` + - The "Default Email signature" parameter from the Mautic configuration :ref:`Message settings` + * - ``default_timezone`` + - default: ``UTC`` + - The "Default timezone" parameter from the Mautic configuration :ref:`System defaults` + * - ``dev_hosts`` + - default: an empty indexed array + - + * - ``disable_trackable_urls`` + - default: ``0`` - for 'No' + - The "Disable trackable URLs" parameter from the Mautic configuration :ref:`Message settings` + * - ``do_not_submit_emails`` + - default: an empty indexed array + - The "Do not accept submission from these domain names" parameter from the Mautic configuration :ref:`Form settings` + * - ``do_not_track_bots`` + - default: an indexed array with 389 values + - The "List of known Bots" parameter from the Mautic configuration :ref:`Miscellaneous settings` + * - ``do_not_track_ips`` + - default: an empty indexed array + - The "List of IP not to track Contacts with" parameter from the Mautic configuration :ref:`Miscellaneous settings` + * - ``do_not_track_404_anonymous`` + - default: ``0`` - for 'No' + - The "Do not Track 404 error for anonymous contacts" parameter from the Mautic configuration :ref:`Tracking settings` + * - ``email_frequency_number`` + - default: ``0`` + - The "Do Not Contact more than" parameter from the Mautic configuration :ref:`Default frequency rule` + * - ``email_frequency_time`` + - default: ``DAY`` + - The "Do Not Contact more than" parameter from the Mautic configuration :ref:`Default frequency rule` + * - ``events_orderby_dir`` + - default: ``ASC`` + - The "Order of the queued events" parameter from the Mautic configuration :ref:`Webhook settings` + * - ``facebook_pixel_id`` + - default: ``null`` + - The "Facebook Pixel ID" parameter from the Mautic configuration :ref:`Tracking settings` + * - ``facebook_pixel_landingpage_enabled`` + - default: ``0`` - for 'No' + - The "Enable on Mautic landing page" parameter from the Mautic configuration :ref:`Tracking settings` + * - ``facebook_pixel_trackingpage_enabled`` + - default: ``0`` - for 'No' + - The "Enabled on your tracking page" parameter from the Mautic configuration :ref:`Tracking settings` + * - ``form_upload_dir`` + - path to the form upload directory + - + * - ``gcm_sender_id`` + - individual + - + * - ``google_analytics`` + - default: ``null`` + - The "Analytics script" parameter from the Mautic configuration :ref:`Landing page settings` + * - ``google_analytics_anonymize_ip`` + - default: ``0`` - for 'No' + - The "Enabled IP anonymize" parameter from the Mautic configuration :ref:`Tracking settings` + * - ``google_analytics_id`` + - default: ``null`` + - The "Google Analytics ID" parameter from the Mautic configuration :ref:`Tracking settings` + * - ``google_analytics_landingpage_enabled`` + - default: ``0`` - for 'No' + - The "Enable on Mautic landing page" parameter from the Mautic configuration :ref:`Tracking settings` + * - ``google_analytics_trackingpage_enabled`` + - default: ``0`` - for 'No' + - The "Enabled on your tracking page" parameter from the Mautic configuration :ref:`Tracking settings` + * - ``image_path`` + - path to the log directory + - The "Path to the images" parameter from the Mautic configuration :ref:`General settings` + * - ``install_source`` + - default: ``Mautic`` + - + * - ``ip_lookup_auth`` + - default: ``null`` + - The "IP lookup service authentication" parameter from the Mautic configuration :ref:`Miscellaneous settings` + * - ``ip_lookup_config`` + - default: an empty indexed array + - + * - ``ip_lookup_create_organization`` + - default: ``0`` + - + * - ``ip_lookup_service`` + - default: ``maxmind_download`` + - The "IP lookup service" parameter from the Mautic configuration :ref:`Miscellaneous settings` + * - ``last_shown_tab`` + - default: ``null`` + - + * - ``link_shortener_url`` + - default: ``null`` + - The "URL Shortener" parameter from the Mautic configuration :ref:`Miscellaneous settings` + * - ``locale`` + - default: ``en_US`` + - The "Default language" parameter from the Mautic configuration :ref:`System defaults` + * - ``log_file_name`` + - default: ``mautic_prod.php`` + - + * - ``log_path`` + - path to the log directory + - The "Path to the log" parameter from the Mautic configuration :ref:`General settings` + * - ``mailer_amazon_region`` + - default: ``us-east-1`` + - The "Amazon SES Region" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_amazon_other_region`` + - default: ``null`` + - + * - ``mailer_api_key`` + - default: ``null`` + - The "ApiKey" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_append_tracking_pixel`` + - default: ``1`` - for 'Yes' + - The "Append tracking pixel into Email body" parameter from the Mautic configuration :ref:`Message settings` + * - ``mailer_auth_mode`` + - default: ``null`` + - The "SMTP authentication mode" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_convert_embed_images`` + - default: ``0`` - for 'No' + - The "Convert embed images to Base64" parameter from the Mautic configuration :ref:`Message settings` + * - ``mailer_custom_headers`` + - default: an empty associative array + - The "Custom headers" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_encryption`` + - default: ``null`` + - The "SMTP encryption type" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_from_email`` + - individual + - The "E-Mail address to send mail from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_from_name`` + - individual + - The "Name to send mail as" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_host`` + - individual + - The "SMTP host" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_is_owner`` + - default: ``0`` - for 'No' + - The "Mailer is owner" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_mailjet_sandbox`` + - default: ``0`` - for 'No' + - The "Sandbox mode - Mailjet" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_mailjet_sandbox_default_mail`` + - default: ``null`` + - The "Default mail for Sandbox mode - Mailjet" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_password`` + - default: ``null`` + - The "Username for the selected mail service" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_port`` + - default: ``null`` + - The "Port" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_return_path`` + - default: ``null`` + - The "Custom return path bounce address" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_reply_to_email`` + - default: ``null`` + - The "Reply to address" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_spool_clear_timeout`` + - default: ``1800`` + - + * - ``mailer_spool_msg_limit`` + - default: ``null`` + - + * - ``mailer_spool_path`` + - path to mailer spool + - + * - ``mailer_spool_recover_timeout`` + - default: ``900`` + - + * - ``mailer_spool_time_limit`` + - default: ``null`` + - + * - ``mailer_spool_type`` + - default: ``memory`` + - The "How should email be handled" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_transport`` + - individual + - The "Service to send mail through" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``mailer_user`` + - default: ``null`` + - The "Username for the selected mail service" parameter from the Mautic configuration :ref:`Mail send settings` + * - ``max_entity_lock_time`` + - default: ``0`` - seconds + - The "Item max lock time" parameter from the Mautic configuration :ref:`Miscellaneous settings` + * - ``max_log_files`` + - default: ``7`` + - + * - ``max_size`` + - default: ``6`` - MB + - The "The Maximum size in MB" parameter from the Mautic configuration :ref:`Asset settings` + * - ``monitored_email`` + - default: an multidimensional array with the associative arrays ``general``, ``EmailBundle_bounces``, ``EmailBundle_unsubscribes``, ``EmailBundle_replies`` + - An array that contains the "Monitored Inbox Settings" parameter from the Mautic configuration :ref:`Monitored inbox settings` + * - ``notification_app_id`` + - default: ``null`` + - + * - ``notification_enabled`` + - default: ``false`` + - + * - ``notification_landing_page_enabled`` + - default: ``true`` + - + * - ``notification_rest_api_key`` + - default: ``null`` + - + * - ``notification_safari_web_id`` + - default: ``null`` + - + * - ``notification_subdomain_name`` + - default: ``null`` + - + * - ``notification_tracking_page_enabled`` + - default: ``false`` + - + * - ``parallel_import_limit`` + - default: ``1`` + - + * - ``queue_mode`` + - default: ``immediate_process`` + - The "Queue Mode" parameter from the Mautic configuration :ref:`Webhook settings` + * - ``rememberme_key`` + - individual + - + * - ``rememberme_lifetime`` + - default: ``31536000`` + - + * - ``rememberme_path`` + - default: ``/`` + - + * - ``report_export_batch_size`` + - default: ``1000`` + - + * - ``report_export_max_filesize_in_bytes`` + - default: ``5000000`` + - + * - ``report_temp_dir`` + - path to temporary report directory + - + * - ``resubscribe_message`` + - default text: ``Email has been re-subscribed. If this was by mistake, click here to unsubscribe.`` + - The "Resubscribed confirmation message" parameter from the Mautic configuration :ref:`Unsubscribe settings` + * - ``saml_idp_default_role`` + - default: ``null`` + - The "Default role for created users" parameter from the Mautic configuration :ref:`User/Authentication settings` + * - ``saml_idp_email_attribute`` + - default: ``EmailAddress`` + - The "Email attribute the configured IDP uses" parameter from the Mautic configuration :ref:`User/Authentication settings` + * - ``saml_idp_entity_id`` + - individual + - The "Use the following entity ID in the IDP" parameter from the Mautic configuration :ref:`User/Authentication settings` + * - ``saml_idp_firstname_attribute`` + - default: ``FirstName`` + - The "First name attribute the configured IDP uses" parameter from the Mautic configuration :ref:`User/Authentication settings` + * - ``saml_idp_lastname_attribute`` + - default: ``LastName`` + - The "Last name attribute the configured IDP uses" parameter from the Mautic configuration :ref:`User/Authentication settings` + * - ``saml_idp_username_attribute`` + - default: ``null`` + - The "Username optional attribute the configured IDP uses" parameter from the Mautic configuration :ref:`User/Authentication settings` + * - ``secret_key`` + - individual + - + * - ``segment_rebuild_time_warning`` + - default: ``30`` + - The "Show warning if Segment hasn't been rebuilt for x hours" parameter from the Mautic configuration :ref:`Segment settings` + * - ``show_contact_categories`` + - default: ``0`` - for 'No' + - The "Show Contact's Categories" parameter from the Mautic configuration :ref:`Unsubscribe settings` + * - ``show_contact_frequency`` + - default: ``0`` - for 'No' + - The "Show Contact frequency preferences" parameter from the Mautic configuration :ref:`Unsubscribe settings` + * - ``show_contact_pause_dates`` + - default: ``0`` - for 'No' + - The "Show pause Contact preferences" parameter from the Mautic configuration :ref:`Unsubscribe settings` + * - ``show_contact_preferences`` + - default: ``0`` - for 'No' + - The "Show contact preference settings" parameter from the Mautic configuration :ref:`Unsubscribe settings` + * - ``show_contact_preferred_channels`` + - default: ``0`` - for 'No' + - The "Show Contact's preferred Channel option" parameter from the Mautic configuration :ref:`Unsubscribe settings` + * - ``show_contact_segments`` + - default: ``0`` - for 'No' + - The "Show Contact Segment preferences" parameter from the Mautic configuration :ref:`Unsubscribe settings` + * - ``site_url`` + - individual + - The "Site URL" parameter from the Mautic configuration :ref:`General settings` + * - ``sms_enabled`` + - default: ``false`` + - + * - ``sms_frequency_number`` + - default: ``0`` + - + * - ``sms_frequency_time`` + - default: ``DAY`` + - + * - ``sms_password`` + - default: ``null`` + - + * - ``sms_sending_phone_number`` + - default: ``null`` + - + * - ``sms_transport`` + - default: ``null`` + - The "Select default transport to use" parameter from the Mautic configuration :ref:`Text message settings` + * - ``sms_username`` + - default: ``null`` + - + * - ``stats_update_url`` + - ``https://updates.mautic.org/stats/send`` + - + * - ``system_update_url`` + - ``https://api.github.com/repos/mautic/mautic/releases`` + - + * - ``theme`` + - default: ``blank`` + - The "Default theme" parameter from the Mautic configuration :ref:`Theme settings` + * - ``theme_email_default`` + - default: ``blank`` + - + * - ``theme_import_allowed_extensions`` + - default: an indexed array with the values ``json``, ``twig``, ``css``, ``js``, ``htm``, ``html``, ``txt``, ``jpg``, ``jpeg``, ``png``, ``gif`` + - The "Allowed file extensions from packages installation" parameter from the Mautic configuration :ref:`Theme settings` + * - ``tmp_path`` + - path to the temporary directory + - + * - ``track_by_tracking_url`` + - default: ``0`` - for 'No' + - The "Identify visitor by tracking URL" parameter from the Mautic configuration :ref:`Tracking settings` + * - ``track_contact_by_ip`` + - default: ``0`` - for 'No' + - The "Identify visitors by IP" parameter from the Mautic configuration :ref:`Tracking settings` + * - ``track_private_ip_ranges`` + - default: ``false`` + - + * - ``translations_fetch_url`` + - ``https://language-packs.mautic.com`` + - + * - ``translations_list_url`` + - ``https://language-packs.mautic.com/manifest.json`` + - + * - ``transliterate_page_title`` + - default: ``0`` - for 'No' + - The "Translate page titles" parameter from the Mautic configuration :ref:`Miscellaneous settings` + * - ``trusted_hosts`` + - individual + - The "Trusted hosts" parameter from the Mautic configuration :ref:`Miscellaneous settings` + * - ``trusted_proxies`` + - individual + - The "Trusted proxies" parameter from the Mautic configuration :ref:`Miscellaneous settings` + * - ``twitter_handle_field`` + - default: ``twitter`` + - The "Twitter Handle Field" parameter from the Mautic configuration :ref:`Social settings` + * - ``unsubscribe_message`` + - default text: ``Unsubscribe to no longer receive emails from us.`` + - The "Unsubscribed confirmation message" parameter from the Mautic configuration :ref:`Unsubscribe settings` + * - ``unsubscribe_text`` + - default text: ``Unsubscribe to no longer receive emails from us.`` + - The "Text for the {unsubscribe_text} token" parameter from the Mautic configuration :ref:`Unsubscribe settings` + * - ``update_stability`` + - default ``stable`` + - The "Set the minimum stability level required for updates" parameter from the Mautic configuration :ref:`Update settings` + * - ``upload_dir`` + - path to the asset directory + - The "Path to the Asset directory" parameter from the Mautic configuration :ref:`Asset settings` + * - ``webhook_disable_limit`` + - default: ``100`` + - + * - ``webhook_email_details`` + - default: ``true`` + - + * - ``webhook_limit`` + - default: ``10`` + - + * - ``webhook_notification_email_addresses`` + - default: ``null`` + - The "Email addresses to receive notifications" parameter from the Mautic configuration :ref:`Notification settings` + * - ``webhook_log_max`` + - default: ``1000`` + - + * - ``webhook_send_notification_to_author`` + - default: ``1`` - for 'Yes' + - The "Send notification to author" parameter from the Mautic configuration :ref:`Notification settings` + * - ``webhook_time_limit`` + - default: ``600`` + - + * - ``webhook_timeout`` + - default: ``15`` + - + * - ``webroot`` + - individual + - The "Mautic root URL" parameter from the Mautic configuration :ref:`General settings` + * - ``webview_text`` + - default: ``Having trouble reading this email? Click here`` + - The "Text for the ``webview_text`` token" parameter from the Mautic configuration :ref:`Message settings` + * - ``welcomenotification_enabled`` + - default: ``true`` + - + * - ``404_page`` + - default: ``null`` - redirected to default 404 page + - The "404 page" parameter from the Mautic configuration :ref:`General settings` \ No newline at end of file diff --git a/docs/configuration/settings.rst b/docs/configuration/settings.rst index 0ccfd80f..f86ea2d1 100644 --- a/docs/configuration/settings.rst +++ b/docs/configuration/settings.rst @@ -16,11 +16,11 @@ General settings * **Site URL** - This is where Mautic is physically installed. Set the URL for this site here. Cron jobs needs this to correctly determine absolute URLs when generating links for Emails, etc. It 's also called Mautic's 'base URL'. -* **Mautic’s root URL** - When a User signs in to their Mautic instance, they go to ``mautic.example.com``. However, that Landing Page is also accessible to the public. If a Contact visits that address, they see the Mautic login page for that instance. +* **Mautic's root URL** - When a User signs in to their Mautic instance, they go to ``mautic.example.com``. However, that Landing Page is also accessible to the public. If a Contact visits that address, they see the Mautic login page for that instance. - To brand that Landing Page, create a Mautic Landing Page that you’d want to greet any Contacts who visit your root ``URL``. Once you’ve done that, Users can sign in into Mautic by visiting ``mautic.example.com/s/login``. + To brand that Landing Page, create a Mautic Landing Page that you'd want to greet any Contacts who visit your root ``URL``. Once you've done that, Users can sign in into Mautic by visiting ``mautic.example.com/s/login``. -* **404 page** - Select the Landing Page that you want to use as the 404 Landing Page. If you don’t want to use Mautic’s default 404 error page, create a custom Landing Page and select that page here. If you don’t select any page, Mautic uses the default error page. +* **404 page** - Select the Landing Page that you want to use as the 404 Landing Page. If you don't want to use Mautic's default 404 error page, create a custom Landing Page and select that page here. If you don't select any page, Mautic uses the default error page. * **Path to the cache, log, and images directory** - These are the file system paths where the cache, logs, and images are saved. @@ -42,7 +42,7 @@ System defaults * **Cached data timeout (minutes)** - Mautic caches data to speed up page loads. Update this setting to change how long Mautic caches the data for. Mautic uses ``10 minutes`` as the default. -* **Date Range Filter Default** - Sets the default for how far back from the current date Mautic looks for data in Reports including Campaign and Email snapshots charts on the item page. This setting allows you to control the default for how far back from the current date Mautic looks for data. If you’ve changed the setting on a Report, Mautic uses what you’ve entered. Mautic’s default value is ``1 Month``. +* **Date Range Filter Default** - Sets the default for how far back from the current date Mautic looks for data in Reports including Campaign and Email snapshots charts on the item page. This setting allows you to control the default for how far back from the current date Mautic looks for data. If you've changed the setting on a Report, Mautic uses what you've entered. Mautic's default value is ``1 Month``. * **Default format for full dates, date only, short dates, and time only** - The default setting uses the standard US time format. The letters in the boxes are PHP code. See the :xref:`PHP manual for date functions`. @@ -57,11 +57,11 @@ Cross-Origin Resource Sharing (CORS) enables data to pass between your website a * **Restrict Domains** - When set to No, any web page can pass information to Mautic. Select Yes to limit communication with your Mautic instance to websites listed in Valid Domains strongly recommended. -* **Valid Domains** - A list of domains allowed to communicate with your Mautic instance. In the text box, list the exact URL of the top level domain you want to allow, one per line. For example: ``http://www.example.com`` tracks any activity on non-secure example.com pages, but ``https://www.example.com`` won’t because this is only tracking on a secure (``https://``) website. +* **Valid Domains** - A list of domains allowed to communicate with your Mautic instance. In the text box, list the exact URL of the top level domain you want to allow, one per line. For example: ``http://www.example.com`` tracks any activity on non-secure example.com pages, but ``https://www.example.com`` won't because this is only tracking on a secure (``https://``) website. .. note:: - In the Valid Domains field, don’t include a slash at the end. For example, use ``https://www.example.com`` instead of ``https://www.example.com/``. + In the Valid Domains field, don't include a slash at the end. For example, use ``https://www.example.com`` instead of ``https://www.example.com/``. Miscellaneous settings ====================== @@ -78,7 +78,7 @@ Miscellaneous settings * **IP lookup service authentication** - To use any IP lookup service which requires authentication, enter your credentials. -* **List of IPs not to track Contacts with** - To turn off tracking for particular IP addresses, enter the addresses, one per line. Mautic doesn’t recommend adding your office IP address. If you list your internal IP address, Mautic won’t track clicks, page hits, etc., from that IP, **including when you are testing functionality**. +* **List of IPs not to track Contacts with** - To turn off tracking for particular IP addresses, enter the addresses, one per line. Mautic doesn't recommend adding your office IP address. If you list your internal IP address, Mautic won't track clicks, page hits, etc., from that IP, **including when you are testing functionality**. * **List of known Bots** - Mautic has the feature to identify and turn-off tracking for several known bots. To track activity from those bots, remove them from this list. To turn off tracking for other bots, add them here (one per line). @@ -111,7 +111,7 @@ Theme settings :width: 600 :alt: Screenshot showing Theme Settings Configuration in Mautic -* **Default Theme** - Applies a Theme to any Form which doesn’t have a Theme already applied. If you don’t have a Landing Page for your Preference Center, but have preference settings turned on in Email settings, Mautic creates a default Preference Center page using the Form styling from the Theme selected here. +* **Default Theme** - Applies a Theme to any Form which doesn't have a Theme already applied. If you don't have a Landing Page for your Preference Center, but have preference settings turned on in Email settings, Mautic creates a default Preference Center page using the Form styling from the Theme selected here. API settings ************ @@ -124,11 +124,11 @@ Full API documentation is available :xref:`Mautic developer API`. * **API enabled** - Select Yes to pass data in and out of Mautic through the API. -* **Enable http basic auth?** - Enables basic authentication for Mautic’s API. It's recommended to only use this with secure sites (https). +* **Enable http basic auth?** - Enables basic authentication for Mautic's API. It's recommended to only use this with secure sites (https). * **Access token lifetime** - When authorizing a new app or Integration, this setting limits how long the access token is valid (in minutes). The default is ``60`` minutes. - For example - You add a new Integration to your SaaS platform. Enter 30 here to limit the access token validity to ``30`` minutes. If you haven’t completed the authentication in that period of time, you must revalidate. + For example - You add a new Integration to your SaaS platform. Enter 30 here to limit the access token validity to ``30`` minutes. If you haven't completed the authentication in that period of time, you must revalidate. * **Refresh token lifetime** - When using OAuth 2.0, the lifetime of the refresh token used to request a new access token once expired. Once the refresh token expires, you must reauthorize. The default is ``14`` days. @@ -161,6 +161,114 @@ Campaign settings Email settings ************** +Email transport settings +======================== + +As Mautic uses the :xref:`Symfony Mailer` library since v5, it supports all Symfony Mailer core plugins out of the box. Transports for other Email services might be found on GitHub or Packagist. + +SMTP transport +-------------- + +The SMTP transport is the default transport used for sending Emails with Mautic. It's configured in the Mautic configuration under the Email Settings tab. The configuration is the same as in the :xref:`Symfony Mailer` documentation. + +Mautic now uses a specific way of providing the connection details for Email transports to interpret, known as a Data Source Name, or DSN. This is the example Data Source Name configuration mentioned in the :xref:`Symfony Mailer` documentation for SMTP: + +.. code-block:: shell + + smtp://user:pass@smtp.example.com:port + +Mautic creates this automatically from the values entered in the Email configuration: + +.. image:: images/smtp-dsn.png + :width: 400 + :alt: SMTP API DSN example + +.. list-table:: Example DSN ``smtp://user:pass@smtp.example.com:port/path?option1=value1&option2=value2`` explained + :widths: 10 20 150 + :header-rows: 1 + :stub-columns: 1 + + * - DSN part + - Example + - Explanation + * - Scheme + - smtp + - Defines which email transport (plugin) will handle the email sending. It also defines which other DSN parts must be present. + * - User + - john + - Some transport wants username and password to authenticate the connection. Some public or private key. Some just API key. + * - Password + - pa$$word + - As mentioned above, read documentation for your particular transport and fill in the fields that are required. For SMPT this is for password. + * - Host + - smtp.mydomain.com + - For SMTP this is the domain name where your SMTP server is running. Other transports may have the domain handled inside it so many wants to put just ``default`` text here. + * - Path + - any/path + - This is usually empty. For SMTP this may be the path to the SMTP server. For other transports this may be the path to the API endpoint. + * - Port + - 465 + - Important for SMTP. The port value defines which encryption is used. This is usually 465 for SSL or 587 for TLS. Avoid using port 25 for security reasons. For other transports this may be the port to the API endpoint. + * - Options + - timeout=10 + - This is optional. This may be the timeout for the connection or similar configuration. The config form will allow you to create multiple options. + +.. note:: + Use the Mautic's global configuration to paste in the DSN information, especially the API keys and passwords. The values must be URL-encoded, and the configuration form does that for you. If you are pasting DSN settings directly into the config/local.php file, you must URL-encode the values yourself. + + +.. vale off + +Example API transport installation +---------------------------------- + +.. vale on + +.. warning:: + Installing Symfony Transports is possible when you've :doc:`installed Mautic via Composer `. + +If you want to use :xref:`Sendgrid` API instead of SMTP to send Emails, for example, you can install the official Symfony Sendgrid Transport by running the following command that is mentioned along others in the :xref:`Symfony Mailer` documentation. + +.. code-block:: shell + + composer require symfony/sendgrid-mailer + +After that, you can configure the transport in the Mautic configuration. The example DSN is again mentioned in the :xref:`Symfony Mailer` documentation along with other transports. In the example of using the Sendgrid API, the DSN looks like this: + +.. code-block:: shell + + sendgrid+api://KEY@default + +This is how it would be set up in Mautic's Email configuration: + + .. image:: images/sendgrid-api-dsn.png + :width: 400 + :alt: Sendgrid API DSN example + +To replace the SendGrid API key, add it to the relevant field in the Email configuration and save. Mautic now uses the SendGrid API to send Emails. + +.. warning:: + It's a nice perk that Mautic can use any transport provided by Symfony Mailer. However, be aware that such transports (from Symfony) don't support batch sending, even via API. They only send one email per request, as opposed to a thousand emails per request as is the case with some Mautic transports, which can make them slow at scale. They also don't support transport callback handling used for bounce management. If you plan to send larger volumes of Emails or need to use features which require callback handling, please consider using Email transports built specifically for such use. These plugins are available in the :doc:`Mautic Marketplace `. + +The system can either send Emails immediately or queue them for processing in batches by a :doc:`cron job `. + +Immediate delivery +------------------ + +This is the default means of delivery. As soon as an action in Mautic triggers an Email to send, it's sent immediately. If you expect to send a large number of Emails, you should use the queue. Sending Email immediately may slow the response time of Mautic if using a remote mail service, since Mautic has to establish a connection with that service before sending the mail. Also attempting to send large batches of Emails at once may hit your server's resource limits or Email sending limits if on a shared host. + +Queued delivery +--------------- + +Mautic works most effectively with high send volumes if you use the queued delivery method. Mautic stores the Email in the configured spool directory until the execution of the command to process the queue. Set up a :doc:`cron job ` at the desired interval to run the command: + +.. code-block:: shell + + php /path/to/mautic/bin/console messenger:consume email_transport + +Some hosts may have limits on the number of Emails sent during a specified time frame and/or limit the execution time of a script. If that's the case for you, or if you just want to moderate batch processing, you can configure batch numbers and time limits in Mautic's Configuration. See the :doc:`cron job documentation ` for more specifics. + + Mail send settings ================== @@ -170,7 +278,7 @@ Mail send settings * **Name to send mail as** - The default name Emails come from. This is typically something like ``{YourCompany Marketing Team}`` or ``{YourCompany}``. -* **Email address to send mail from** - The Email address for the name you’re sending mail from. The address displays in the ``From:`` field when your Contacts receive your Emails. +* **Email address to send mail from** - The Email address for the name you're sending mail from. The address displays in the ``From:`` field when your Contacts receive your Emails. .. note:: @@ -180,19 +288,21 @@ Mail send settings * **Custom return path (bounce) address** - Set a custom return path/bounce Email address for Emails sent from the system. Note that some mail transports, such as GMail, won't support this. -* **Mailer is owner** - If Contacts in Mautic have owners, select Yes to use the Contact owner as the sender of Emails to any Contacts they’re listed as the owner for. +* **Mailer is owner** - If Contacts in Mautic have owners, select Yes to use the Contact owner as the sender of Emails to any Contacts they're listed as the owner for. .. note:: - Mailer is owner overrides any other name or Email to send mail from, including the default and individual Emails. Every Contact owner’s domain must have ``SPF`` and ``DKIM`` records. You can see this configuration for individual Emails, rather than globally. + Mailer is owner overrides any other name or Email to send mail from, including the default and individual Emails. Every Contact owner's domain must have ``SPF`` and ``DKIM`` records. You can see this configuration for individual Emails, rather than globally. For more information see :doc:`Mailer is owner` * **Service to send mail through** - Select the Email service provider you use, and enter your credentials. + +See :ref:`here` to set the Contact's Email subscription preferences. Default frequency rule ====================== -* **Do not contact more than each ** - This limits the number of Marketing Messages a Contact receives in a certain period of time day, week, month. Transactional messages don’t count towards this limit. You can adjust this at the individual Contact level, either manually or by Preference Center setting. +* **Do not contact more than each ** - This limits the number of Marketing Messages a Contact receives in a certain period of time day, week, month. Transactional messages don't count towards this limit. You can adjust this at the individual Contact level, either manually or by Preference Center setting. .. note:: @@ -230,7 +340,7 @@ Message settings * **Convert embed images to Base64** - Select **Yes** to display embedded images in Emails using embedded base64 code rather than as embedded images. -* **Disable trackable URLs** - Removes tracking from URLs in your Emails. Select Yes to prevent tracking, reporting on, and using decisions based on link clicks. Some Email service providers don’t like redirecting URLs. Using trackable URLs in your Emails may impact deliverability. +* **Disable trackable URLs** - Removes tracking from URLs in your Emails. Select Yes to prevent tracking, reporting on, and using decisions based on link clicks. Some Email service providers don't like redirecting URLs. Using trackable URLs in your Emails may impact deliverability. Unsubscribe settings ==================== @@ -241,21 +351,44 @@ Unsubscribe settings * **Text for the {unsubscribe_text} token** - Like the ``{webview_text}`` token, this allows you to customize the **Unsubscribe** link. - For example - Edit between the ```` and ```` tags. Don’t change the URL as it's tokenized. If you add ``{unsubscribe_url}`` as a token in the Email, you won’t see this text. + For example - Edit between the ```` and ```` tags. Don't change the URL as it's tokenized. If you add ``{unsubscribe_url}`` as a token in the Email, you won't see this text. -* **Unsubscribed and resubscribed confirmation message** - If a Contact unsubscribes or resubscribes, this message displays on the page after the respective action. Don’t edit the ``|EMAIL|`` or the ``|URL|`` token in the ```` tag. +* **Unsubscribed and resubscribed confirmation message** - If a Contact unsubscribes or resubscribes, this message displays on the page after the respective action. Don't edit the ``|EMAIL|`` or the ``|URL|`` token in the ```` tag. -* **Show Contact preference settings** - Select **Yes** to direct the unsubscribe link to your configured Preference enter. If you haven’t created a Preference Center, Mautic creates a default page based on the next 5 settings. The created page uses the default Theme for styling. +* **Show Contact preference settings** - Select **Yes** to direct the unsubscribe link to your configured Preference enter. If you haven't created a Preference Center, Mautic creates a default page based on the next 5 settings. The created page uses the default Theme for styling. -* **Show Contact Segment preferences** - Select **Yes** to allow a Contact to change which Segments they’re part of on the Preference Center page. Segments won’t display on the Preference Center page if they aren’t published and public. +* **Show Contact Segment preferences** - Select **Yes** to allow a Contact to change which Segments they're part of on the Preference Center page. Segments won't display on the Preference Center page if they aren't published and public. * **Show Contact frequency preferences** - Select **Yes** to allow an individual to limit the number of Marketing Messages they receive on each Channel from the Preference Center. -* **Show pause Contact preferences** - Select **Yes** to allow Contacts to turn-off messages from your Mautic account to their Email address for a specified date range. This action isn’t a full unsubscribe action, and at the end of the date range, In this case, it sends the message again after the date range ends, as this isn't a full unsubscribe action. +* **Show pause Contact preferences** - Select **Yes** to allow Contacts to turn-off messages from your Mautic account to their Email address for a specified date range. This action isn't a full unsubscribe action, and at the end of the date range, In this case, it sends the message again after the date range ends, as this isn't a full unsubscribe action. + +* **Show Contact's Categories** - If you have Categories set for Contacts, Campaigns, Emails, etc., select Yes to allow the Contact to opt out of the Categories they choose from the Preference Center page. + +* **Show Contact's preferred Channel option** - If you have multiple Channels available within your Mautic instance. For example; Email, ``SMS``, mobile push, web notifications, etc., Contacts can choose their preferred Channel. This can be useful if you are using the Marketing Messages feature of Mautic. More information about the Preference Center is available :doc:`here`. + + +.. vale off + +Tracking Opened Emails +====================== + +.. vale on + +Mautic automatically tags each Email with a tracking pixel image. This allows Mautic to track when a Contact opens the Email and execute actions accordingly. Note that there are limitations to this technology - the Contact's Email client supporting HTML and auto-loading of images, and not blocking the loading of pixels. If the Email client doesn't load the image, there's no way for Mautic to know the opened status of the Email. + +By default, Mautic adds the tracking pixel image at the end of the message, just before the ```` tag. If needed, one could use the ``{tracking_pixel}`` variable within the body content token to have it placed elsewhere. Beware that you shouldn't insert this directly after the opening ```` because this prevents correct display of pre-header text on some Email clients. + +It's possible to turn off the tracking pixel entirely if you don't need to use it, in the Global Settings. + +.. vale off + +Tracking links in Emails +======================== -* **Show Contact’s Categories** - If you have Categories set for Contacts, Campaigns, Emails, etc., select Yes to allow the Contact to opt out of the Categories they choose from the Preference Center page. +.. vale on -* **Show Contact’s preferred Channel option** - If you have multiple Channels available within your Mautic instance. For example; Email, ``SMS``, mobile push, web notifications, etc., Contacts can choose their preferred Channel. This can be useful if you are using the Marketing Messages feature of Mautic. More information about the Preference Center is available :doc:`here`. +Mautic tracks clicks of each link in an Email, with the stats displayed at the bottom of each Email detail view under the Click Counts tab. Form settings @@ -306,7 +439,7 @@ Segment settings :width: 600 :alt: Screenshot showing Segment Settings Configuration in Mautic -* **Show warning if Segment hasn’t been rebuilt for X hours** - Every time a :ref:`cron jobs` runs, Segments are rebuilt. If there is an error that prevents a Segment from rebuilding, Mautic displays a warning message. This field allows you to configure the allowable length of time between rebuilds, after which the warning message appears. +* **Show warning if Segment hasn't been rebuilt for X hours** - Every time a :ref:`cron jobs` runs, Segments are rebuilt. If there is an error that prevents a Segment from rebuilding, Mautic displays a warning message. This field allows you to configure the allowable length of time between rebuilds, after which the warning message appears. Company settings **************** @@ -339,7 +472,7 @@ Landing page settings :width: 600 :alt: Screenshot showing Landing Page Settings Configuration in Mautic -* **Show Category in page URL?** - If you use Categories, the Landing Page’s associated Category displays in the URL if you select Yes. +* **Show Category in Page URL?** - If you use Categories, the Landing Page's associated Category displays in the URL if you select Yes. * **Analytics script** - To track Landing Page visits and activity in other platforms such as Google Analytics, add those tracking scripts here. @@ -370,7 +503,7 @@ Mautic tracking settings .. note:: * The tracking code automatically detects the Preferred Timezone and Preferred Locale fields. - * Landing Pages including 4-byte UTF-8 characters, such as emojis and some Chinese or other non-Latin characters, in the Landing Page title or URL aren't tracked on a Contact’s activity history in Mautic. All Latin characters used in English and other western languages are of 1-byte and are tracked. + * Landing Pages including 4-byte UTF-8 characters, such as emojis and some Chinese or other non-Latin characters, in the Landing Page title or URL aren't tracked on a Contact's activity history in Mautic. All Latin characters used in English and other western languages are of 1-byte and are tracked. Facebook pixel ============== @@ -379,7 +512,7 @@ Facebook pixel :width: 600 :alt: Screenshot showing Facebook Pixel Settings Configuration in Mautic -* **Facebook Pixel ID** - Enter your Facebook Pixel ID and select the options you’d like to use the pixel for. +* **Facebook Pixel ID** - Enter your Facebook Pixel ID and select the options you'd like to use the pixel for. * **Enabled on your tracking landing page** - Select Yes to have Mautic append the Facebook Pixel to the Mautic tracking code to track Landing Pages where the tracking code exists. @@ -393,7 +526,7 @@ Google analytics :width: 600 :alt: Screenshot showing Google Analytics Settings Configuration in Mautic -* **Google Analytics ID** - Enter your Google Analytics ID and select the options you’d like to use the pixel for. +* **Google Analytics ID** - Enter your Google Analytics ID and select the options you'd like to use the pixel for. * **Enabled on your tracking landing page** - Select Yes to have Mautic append the Google Analytics script to the Mautic tracking code to track Landing Pages where the tracking code exists. diff --git a/docs/contacts/contacts_overview.rst b/docs/contacts/contacts_overview.rst new file mode 100644 index 00000000..0047c22b --- /dev/null +++ b/docs/contacts/contacts_overview.rst @@ -0,0 +1,70 @@ + +Contacts +######### + + +Contacts are the central factor of a marketing automation platform. + +These are all the individuals who have visited your websites or interacted with you in some way. + +Contact types +************** + +There are two types of Contacts: + +Visitors (formerly anonymous leads) +=================================== + +Unidentified visitors to your site who haven't yet completed a Form or otherwise interacted with your site. + +Mautic tracks these Contacts, but usually keeps them hidden so as not to clutter up your view. + +Visitors are worth tracking, because these could be future customers. By tracking them before they have any interaction, you can retain a log of when they visited your site, which allows you to get a picture of their activity prior to engaging with you. + +You can use the filter in the Contacts screen to display only visitors by using the this command ``is:anonymous`` in the search bar at the top of the Contacts list. + +.. image:: images/contacts-anonymous.png + :alt: Screenshot of anonymous Contact + +**What you see** - Switching to the anonymous Contacts view displays the IP addresses for visitors to Landing Pages tracked with your Mautic tracking code. +If you have an IP lookup service :ref:`configured` in **Settings > System Settings > Miscellaneous Settings**, Mautic shows an approximate location of the Contacts. Mautic uses :xref:`MaxMind's` Geolite2 City by default. MaxMind approximates the location based on the Contact's Internet Service Provider, and may not be the exact location of the Contact. + +**Individual Contacts** - Click an IP address to display a Contact record, similar to known Contacts. If there's any information on an anonymous Contact, you can see it here. This data can include: + +* Landing Pages the Contact has visited + +* Forms submitted + +* Scoring + +* Data from Forms - which don't include the unique identifier, since that would make the contact known + +.. note:: + + * In **Settings > Configuration > Tracking Settings**, you can enable the **Do Not Track 404 error for anonymous Contacts** option to not track page hits on any 404 error page tracked by the tracking code. This option helps prevent tracking pages you're not interested in and filling the Contact logs with bot activity. See :ref:`Tracking settings` + + * Data for anonymous Contacts isn't available for segmentation or reporting. Once identified, the data is available, which applies to non-Campaign based Dynamic Web Content filters. + + +.. vale off + +Standard Contacts +================= + +.. vale on + +The second type of Contact is a known Contact. These Contacts have identified themselves via a Form or other source. You may also have more information about them from previous interactions, or from a third-party system such as a Customer Relationship Management (CRM) tool. + +As a result, these Contacts typically have a name, Email, and other identifying information associated with the Contact. + +These are Contacts which may have started as a visitor, but at some point provided additional information such as a name, Email address, social network handle, or other identifying characteristics which have enabled you to connect up the activity on your website with a known person. You can nurture these Contacts through the Mautic marketing automation platform, learn more about their behavior, and take specific actions as a result of this information. + + +Changing the view +***************** + +By default Mautic uses the **list view**, but you can also choose to switch to the **card view** also known as **grid view**, which uses avatars to depict the Contacts visually using cards. + +If you'd like to see your Contacts in the card view, click the **C** button while you're looking at the Contact list. To go back to the table or list view, press the **T** key. + +The :ref:`Manage Contacts` section provides more information on how you can work with Contacts in Mautic. diff --git a/docs/contacts/custom_fields.rst b/docs/contacts/custom_fields.rst index 51318a86..9739a636 100644 --- a/docs/contacts/custom_fields.rst +++ b/docs/contacts/custom_fields.rst @@ -1,6 +1,107 @@ .. vale off -Manage custom fields +Manage Custom Fields #################### -.. vale on \ No newline at end of file +.. vale on + +You can manage Custom Fields through the Admin menu - click the cogwheel upper right-hand side of Mautic. + +.. image:: images/admin-menu.png + :align: center + :alt: Screenshot of Admin menu + :width: 200 + +Custom Fields +************* + +The **Custom Fields** page lets you view all existing Contact fields as well as any custom Contact fields you have created. + +.. image:: images/custom-fields.jpeg + :align: center + :alt: Screenshot of Custom Field + +| + +You'll notice the group column shows the specific field on the Contact profile. In the last column, you may see several icons which signify various properties of the field: + +.. image:: images/custom-field-icons.png + :align: center + :alt: Screenshot of Custom field icons + +| + +1. **Lock icon** - The core installation uses these fields, you can't remove them. + +2. **List icon** - You can use these fields as filters for Segments. + +3. **Asterisks icon** - These fields are required when filling in the Contact Form + +4. **Globe icon** - You can update these fields publicly through the :doc:`tracking pixel` URL query see :doc:`Contact Monitoring` for more details. + +It's important to note that from Mautic 5, you won't be able to edit the default value for any Fields used to identify a Contact or Company, including: + +* Email + +* Company + +* First name + +* Last name + +* Social profiles + +* Unique identifier fields + +* Company name + +* Company Email + +* Company website + +* State + +* Country + +* City + +Published fields +***************** + +There is a toggle switch which shows before each label title. You can find this type of switch throughout the Mautic UI for publishing and unpublishing items. + +.. only:: html + + .. figure:: images/unpublish-fields.gif + +| + +.. vale off + +Adding a new Custom Field +************************* + +.. vale on + +You can create additional custom fields and define the data type you want that field to hold. In addition to the data type you select the group for that particular field. This defines where the field displays on the Contact edit and detail view. + +.. image:: images/new-custom-field.jpeg + :align: center + :alt: Screenshot of New Custom Field + +| + +Creating Custom Fields via a command +************************************ + +When you create a new Custom Field for Contacts or Companies in Mautic, the system adds a new column to the database. For larger instances of Mautic, this operation can slow down, and the table remains locked while running. As a result, you can't make any changes until the system creates the field. The ``HTTP`` request may time out, causing the User Interface to report that the column exists even though Contact/Company updates may fail because the column is still missing. + +There is a way around this when you configure the processing of field creation in the background. + +Since :xref:`Mautic 3` there is an option you can set in your ``app/config/local.php`` file: ``'create_custom_field_in_background' => true``,. + +If you configure this option, the new Custom Field becomes visible in the list of Custom Fields. The custom field remains unpublished until you run the command ``bin/console mautic:custom-field:create-column``. This command creates the actual column in the table and publishes the field metadata. + +This configuration helps prevent **http** request timeouts because it handles the long-running SQL query to create the new table column as a background task. + +To mitigate the table lock issue, run the command only once daily when you know that most of your audience is offline. With less traffic going into Mautic, the chances of encountering a problem are lower. diff --git a/docs/contacts/frequency_rules.rst b/docs/contacts/frequency_rules.rst index 3e700800..2f85cbe9 100644 --- a/docs/contacts/frequency_rules.rst +++ b/docs/contacts/frequency_rules.rst @@ -3,4 +3,14 @@ Frequency rules ############### -.. vale on \ No newline at end of file +.. vale on + +Frequency rules are a set of rules used to define the number of times you should communicate with a Contact by any means in Mautic. Mautic implements this for the Email and SMS Channels currently, but this applies to other Channels as appropriate, such as social media mentions or messages sent in another Channel. + +How to set frequency rules +*************************** + +* Globally, from the configuration panel, you can set frequency rules for both Email and SMS settings. + + +* Individually, from a Contact's detail page under the dropdown menu on the upper right-hand side, you can select the Channels where you want the rules to apply. Setting the rule here overrides the general settings. \ No newline at end of file diff --git a/docs/contacts/images/admin-menu.png b/docs/contacts/images/admin-menu.png new file mode 100644 index 00000000..cef34e21 Binary files /dev/null and b/docs/contacts/images/admin-menu.png differ diff --git a/docs/contacts/images/batch-actions.png b/docs/contacts/images/batch-actions.png new file mode 100644 index 00000000..ab92bd12 Binary files /dev/null and b/docs/contacts/images/batch-actions.png differ diff --git a/docs/contacts/images/categories.png b/docs/contacts/images/categories.png new file mode 100644 index 00000000..5abcd716 Binary files /dev/null and b/docs/contacts/images/categories.png differ diff --git a/docs/contacts/images/change-segments.jpeg b/docs/contacts/images/change-segments.jpeg new file mode 100644 index 00000000..9e6f2b80 Binary files /dev/null and b/docs/contacts/images/change-segments.jpeg differ diff --git a/docs/contacts/images/contact-duplicates-operator-configuration.png b/docs/contacts/images/contact-duplicates-operator-configuration.png new file mode 100644 index 00000000..1289764d Binary files /dev/null and b/docs/contacts/images/contact-duplicates-operator-configuration.png differ diff --git a/docs/contacts/images/contact-manual-add.png b/docs/contacts/images/contact-manual-add.png new file mode 100644 index 00000000..09897cf8 Binary files /dev/null and b/docs/contacts/images/contact-manual-add.png differ diff --git a/docs/contacts/images/contact-quick-add.png b/docs/contacts/images/contact-quick-add.png new file mode 100644 index 00000000..aeb626bd Binary files /dev/null and b/docs/contacts/images/contact-quick-add.png differ diff --git a/docs/contacts/images/contacts-anonymous.png b/docs/contacts/images/contacts-anonymous.png new file mode 100644 index 00000000..11f8ba08 Binary files /dev/null and b/docs/contacts/images/contacts-anonymous.png differ diff --git a/docs/contacts/images/contacts-search.jpeg b/docs/contacts/images/contacts-search.jpeg new file mode 100644 index 00000000..d8125e84 Binary files /dev/null and b/docs/contacts/images/contacts-search.jpeg differ diff --git a/docs/contacts/images/custom-field-icons.png b/docs/contacts/images/custom-field-icons.png new file mode 100644 index 00000000..326480b8 Binary files /dev/null and b/docs/contacts/images/custom-field-icons.png differ diff --git a/docs/contacts/images/custom-fields.jpeg b/docs/contacts/images/custom-fields.jpeg new file mode 100644 index 00000000..f5885574 Binary files /dev/null and b/docs/contacts/images/custom-fields.jpeg differ diff --git a/docs/contacts/images/do-not-contact.png b/docs/contacts/images/do-not-contact.png new file mode 100644 index 00000000..5216bc97 Binary files /dev/null and b/docs/contacts/images/do-not-contact.png differ diff --git a/docs/contacts/images/email-unsubscribe-settings.png b/docs/contacts/images/email-unsubscribe-settings.png new file mode 100644 index 00000000..6d66a031 Binary files /dev/null and b/docs/contacts/images/email-unsubscribe-settings.png differ diff --git a/docs/contacts/images/facebook-pixel-helper.png b/docs/contacts/images/facebook-pixel-helper.png new file mode 100644 index 00000000..503291ba Binary files /dev/null and b/docs/contacts/images/facebook-pixel-helper.png differ diff --git a/docs/contacts/images/google-analytics-tag-assistent.png b/docs/contacts/images/google-analytics-tag-assistent.png new file mode 100644 index 00000000..a9dab8cc Binary files /dev/null and b/docs/contacts/images/google-analytics-tag-assistent.png differ diff --git a/docs/contacts/images/import-history-button.png b/docs/contacts/images/import-history-button.png new file mode 100644 index 00000000..9355a779 Binary files /dev/null and b/docs/contacts/images/import-history-button.png differ diff --git a/docs/contacts/images/import-publish.png b/docs/contacts/images/import-publish.png new file mode 100644 index 00000000..3d7c866f Binary files /dev/null and b/docs/contacts/images/import-publish.png differ diff --git a/docs/contacts/images/new-custom-field.jpeg b/docs/contacts/images/new-custom-field.jpeg new file mode 100644 index 00000000..0d64334d Binary files /dev/null and b/docs/contacts/images/new-custom-field.jpeg differ diff --git a/docs/contacts/images/new-custom-field.png b/docs/contacts/images/new-custom-field.png new file mode 100644 index 00000000..c956d339 Binary files /dev/null and b/docs/contacts/images/new-custom-field.png differ diff --git a/docs/contacts/images/notifications.png b/docs/contacts/images/notifications.png new file mode 100644 index 00000000..f057e5cf Binary files /dev/null and b/docs/contacts/images/notifications.png differ diff --git a/docs/contacts/images/pref1.png b/docs/contacts/images/pref1.png new file mode 100644 index 00000000..84dcc478 Binary files /dev/null and b/docs/contacts/images/pref1.png differ diff --git a/docs/contacts/images/pref2.png b/docs/contacts/images/pref2.png new file mode 100644 index 00000000..e2de005c Binary files /dev/null and b/docs/contacts/images/pref2.png differ diff --git a/docs/contacts/images/pref3.png b/docs/contacts/images/pref3.png new file mode 100644 index 00000000..9dfcd4ea Binary files /dev/null and b/docs/contacts/images/pref3.png differ diff --git a/docs/contacts/images/pref4.png b/docs/contacts/images/pref4.png new file mode 100644 index 00000000..45b24c39 Binary files /dev/null and b/docs/contacts/images/pref4.png differ diff --git a/docs/contacts/images/pref5.png b/docs/contacts/images/pref5.png new file mode 100644 index 00000000..ea6a3540 Binary files /dev/null and b/docs/contacts/images/pref5.png differ diff --git a/docs/contacts/images/pref6.png b/docs/contacts/images/pref6.png new file mode 100644 index 00000000..72ab4b72 Binary files /dev/null and b/docs/contacts/images/pref6.png differ diff --git a/docs/contacts/images/pref7.png b/docs/contacts/images/pref7.png new file mode 100644 index 00000000..d1df855a Binary files /dev/null and b/docs/contacts/images/pref7.png differ diff --git a/docs/contacts/images/pref8.png b/docs/contacts/images/pref8.png new file mode 100644 index 00000000..3dd6c024 Binary files /dev/null and b/docs/contacts/images/pref8.png differ diff --git a/docs/contacts/images/preferences.png b/docs/contacts/images/preferences.png new file mode 100644 index 00000000..184f04ae Binary files /dev/null and b/docs/contacts/images/preferences.png differ diff --git a/docs/contacts/images/segments.png b/docs/contacts/images/segments.png new file mode 100644 index 00000000..d2a74c7c Binary files /dev/null and b/docs/contacts/images/segments.png differ diff --git a/docs/contacts/images/unpublish-fields.gif b/docs/contacts/images/unpublish-fields.gif new file mode 100644 index 00000000..0b63de15 Binary files /dev/null and b/docs/contacts/images/unpublish-fields.gif differ diff --git a/docs/contacts/images/unsubscribe.png b/docs/contacts/images/unsubscribe.png new file mode 100644 index 00000000..bfc09663 Binary files /dev/null and b/docs/contacts/images/unsubscribe.png differ diff --git a/docs/contacts/import_contacts.rst b/docs/contacts/import_contacts.rst index 62fc880b..db74ad97 100644 --- a/docs/contacts/import_contacts.rst +++ b/docs/contacts/import_contacts.rst @@ -3,4 +3,208 @@ Import Contacts ############### -.. vale on \ No newline at end of file +.. vale on + +Contact importing is possible through the User Interface in Mautic. For larger imports it's recommended to complete the import in the background via a cron job. + +Since Mautic 2.9, Mautic shows in a Contact's event history when an import job creates or updates a Contact. + +Import file requirements +************************ + +* The CSV file must use UTF8 encoding. Other encodings may cause failures while importing. Read the documentation of your spreadsheet program on how to export a spreadsheet to UTF8. Google Sheets encodes to UTF8 automatically, Libre/Open Office lets you choose before export. + +* For boolean values like ``doNotEmail`` or custom boolean field, use values ``true``, ``1``, ``on`` or ``yes`` as TRUE values. Mautic considers anything else ``false``. +* To import multiple Tags for a Contact separate them with ``|`` like ``tag-a|tag-b|tag-c`` +* For date/time values, use ISO8601 notation ``i.e. YYYY-MM-DD hh:mm:ss``. Other formats may work too, but they could be problematic. + + * Example: ``2019-01-02 19:08:42``. + + Other formats may work too, but they could be problematic. + +Tips +==== + +* Use a header row with the column names matching the Mautic Contact Custom Field names. This way Mautic automatically pre-selects the mapping for you. For example, if you name the first name column as ``firstname``, Mautic maps this automatically to ``{contactfield=firstname}``. + +* When you set up your mapping, you have an option to skip the import on fields where a value already exists on the Contact record. This setting allows you to avoid erasing data which already exists in your Mautic Contacts. + +* If your CSV contains more than a few thousand Contacts, divide the file into several smaller CSV files to avoid memory issues and slow import speeds. + + +.. tip:: + If using a Linux system, see the ``GNU`` parallel command ``sudo apt install parallel``. + + ``cat big_contact_list.csv | parallel --header : --pipe -N 1000 'cat > split_list_part{#}.csv'`` + + This generates files: ``split_list_part1.csv ...split_list_part9.csv, split_list_part10.csv``. + + + +Types of import +*************** + +Browser import +============== + +You must import larger CSV files in batches to avoid hitting server (PHP) memory and execution time limits. When importing in the browser, your browser is controlling the batches. When one finishes, the JavaScript starts a new one. This means the browser window has to stay opened and connected to the internet the whole time. + +Use the browser import method only if you don't have any other choice. You should default to using the background import. + +Background import +================= + +Background import jobs - triggered manually or via a cron job - have the advantage of benevolent time limits. A CSV background import isn't restarted every batch - 1 batch = 100 rows by default - Mautic saves the last row imported, and the next batch continues from that point. Background imports are always faster and more reliable than browser imports. + + +.. warning:: + + Background import requires the command ``php /path/to/mautic/bin/console mautic:import`` to run periodically. Add it to your :doc:`cron jobs`. + +Successful results of the :doc:`background job` look like this: + +.. code-block:: shell + + $ bin/console mautic:import + 48/48 [============================] 100% + 48 lines were processed, 0 items created, 48 items updated, 0 items ignored in 4.78 s + +If there is no import waiting in the queue, there won't be any messages. You can also use ``--quiet`` to prevent messages showing. + +Automatic import type configuration +----------------------------------- + +There is an option in the Global Mautic Configuration > Contact settings to define the optimal limit of browser import vs background import. + +If you enter 500, that means that if there's less than ``500`` rows, the browser imports it. If there's more than 500 rows, Mautic queues it for processing when the background import cron job next runs. + + The default value is zero, which means it shows two import buttons instead of one, and you have to decide what import option to use during every import. + +Parallel imports +---------------- + +The import can take several minutes. One import might be running when you start another. There is the ``parallel_import_limit`` configurable option to prevent running out of server resources. By default, only 1 import runs at a time. You can change this option by adding it to your ``app/config/local.php`` file. + +Import job list +*************** + +You can access the list of imports by going to the Contacts area, clicking the Action menu at the top right of the Contacts table, and then selecting the Import History option. + +.. image:: images/import-history-button.png + :align: center + :alt: Screenshot of Import history button + +| + +.. tip:: + + The direct URL is ``https://example.com/s/contacts/import/1`` + +The table shows you: + +* basic statistics about all imports +* their :ref:`current status` +* original CSV file names +* who created the import +* Created date +* when the background job last updated the statistics + +There is also a toggle switch which enables you to :ref:`stop and start` queued or **In Progress** imports. + +Import job status +================= + +There are several potential statuses for import jobs: + +* **Queued** - Mautic has queued the import for background processing. It's waiting for the background job to start the import. + +* **In Progress** - The background job started the import and hasn't finished yet. You can see the progress in the list of imports. + +* **Imported** - The import has been successfully processed. + +* **Failed** - The import failed for some reason. The most common cause may be that the uploaded CSV file no longer exists, Mautic doesn't have permission to read it, or the import was unresponsive for more than 2 hours. + +* **Stopped** - The User stopped the import when it was in the **Queued** or **In Progress** states. + +* **Manual** - The User selected to import in the browser ``manually``. It's similar to In Progress. + +* **Delayed** - The background job wanted to start the import, but the import process couldn't. So it's delayed for later. The reason when this could happen is when it hits the parallel import limit. The import starts as soon as it's able to do so. + +Import job detail +================= + +Clicking on a filename opens the import job detail page. + +The main content area displays information about ignored rows - if any. The table tells you what row in the CSV file it was and what was the reason, so you can fix those rows and :ref:`start the import` again. + +There are two charts: + +1. The pie chart shows the ratio between created, updated and failed rows. + +2. The line chart shows the Contacts added per minute. + +More detailed statistics and the import job configuration are available if you click *Details*. This includes import speed, field mappings, and job timestamps. + +Starting and stopping imports +***************************** + +How to start an import +====================== + +1. Go to **Contacts**. + +2. In the top right corner of the Contacts page, open the sub menu of actions and select the **Import** option. + +.. tip:: + + The direct URL is ``https://example.com/s/contacts/import/new`` + +3. Select the CSV file with Contacts you want to import. + +4. Adjust the CSV settings if your file uses a non-standard delimiter or :ref:`encoding` and so on. + +5. Upload your CSV file. + +6. The field mapping page should show up. The first set of options lets you select owner, Segment and tags to assign globally to all imported Contacts. The second set of options lets you map the columns from your CSV file to Mautic Contact :ref:`Custom Fields`. The third set of options lets you map columns from your CSV file to special Contact attributes like *Date Created* and so on. + +7. When your field mapping is ready, click one of the Import buttons described previously. + +How to stop a background import +=============================== + +1. Go to *Contacts*. + +2. In the top right corner of the Contacts page, open the sub menu of actions and select the :ref:`Import History` option. + +3. Unpublish the import job you want to stop. The import changes :ref:`status` to Stopped. It finishes importing the current batch and then stops. + +4. To start the import again, publish it, and the background job continues with the next :doc:`cron job execution`. + +.. image:: images/import-publish.png + :align: center + :alt: Screenshot of Import publish + +| + +When the background job finishes, either successfully or if it fails, you'll get a notification in Mautic's notification area about it. + +.. image:: images/notifications.png + :align: center + :alt: Screenshot of notification + +| + +FAQ +*** + +Q. The import times out. + +A. Either use the background job to import, or change the batch limit to smaller number than 100. + +Q: Are imported *Do Not Contact* values stored as a bounce or a ``unsubscription``? + +A. It's stored as a ``Manual Unsubscription``. It's the same as marking the Contact *Do Not Contact* from the Contact's page. + +.. image:: images/do-not-contact.png + :align: center + :alt: Screenshot of Do Not Contact diff --git a/docs/contacts/manage_contacts.rst b/docs/contacts/manage_contacts.rst index 8044d555..9af04b64 100644 --- a/docs/contacts/manage_contacts.rst +++ b/docs/contacts/manage_contacts.rst @@ -5,5 +5,773 @@ Managing Contacts .. vale on +The manage Contacts page is the main interface through which you can view and interact with your Contacts - both visitors and standard Contacts. + +.. vale off + +Searching for Contacts +********************** + +.. vale on + +You can search within a Segment using the box at the top of the list, or order Contacts by using the table headings - click on the relevant table heading. + +.. image:: images/contacts-search.jpeg + :align: center + :alt: Screenshot of Contact Search + +| + +The search box allows many different search types and follows the same search process and variables as found in all other search layouts. + +.. vale off + +Working with Contacts +********************* + +.. vale on + +Quick add +========= + +.. image:: images/contact-quick-add.png + :align: center + :alt: Screenshot of Contact Quick Add + +| + +Quick Add is a short Form with the fields you deem most important. To display fields in the **Quick Add** Form, make them available on short Forms in the Custom Fields configuration. + +You can add the Contact through the New Contact Form and include much more detail, but for quick entry this is the easiest and fastest way to get the Contact into the system. + +Add new Contact +=============== + +.. image:: images/contact-manual-add.png + :align: center + :alt: Screenshot of Contact Manual Add + +| + +This opens the new Contact screen, where you can enter all the information you have about the Contact. It also displays all published Contact fields when creating a new Contact. + +Use the tabs at the top to populate existing Custom Fields and social network profiles. + +.. note:: + + Before you start adding Contacts, you may need to add :doc:`custom fields` to capture all the information you require. + +.. vale off + +Importing Contact lists +======================= + +.. vale on + +Mautic offers the ability to import Contacts from other sources via CSV file - this is a great way to get up and running quickly if you need to import a lot of Contacts at once. + +Read more about importing Contacts in :doc:`/contacts/import_contacts`. + +.. vale off + +Exporting Contact lists +======================= + +.. vale on + +Mautic supports exporting Contact lists in CSV and Excel formats. + +* **Export to CSV** - Sends a downloadable link containing the CSV file of the Contact list to the Email address on your Mautic User profile. + +.. note:: + + This feature currently supports the export of a maximum of one million Contacts. After clicking the link in the Email, Users must log into Mautic via the login screen. Users must login as the same authorized User that received the Email, after which the file download commences. Once downloaded, Users can share the file with other non-Mautic Users. + +* **Export to Excel** - Exports Contact lists to Excel directly from the system. + +.. vale off + +Editing Contacts +================ + +.. vale on + +To edit a Contact, click the name of the Contact - or the IP address if the visitor is anonymous - to open the Contact screen. + +From this screen, you can view the recent events and any notes saved against the Contact. + +To edit the Contact, click the '**edit**' button on the top-right menu. + +Managing duplicates +=================== + +When Mautic tracks a Contact's actions - such as page hits or Form submissions - Contacts are automatically merged based on their unique identifiers, which are: + +* Email - *or any other Contact field you mark as unique identifier* + +* Cookie + +Mautic merges all actions to the Contact with the same cookie or creates a new cookie if it knows the unique `device_id`. + +If a Contact sends a Form with an Email address, it merges the submission with the Contact having the same Email address. This happens even if the IP address or the cookie matches another Contact. + +So, Mautic takes care of duplicate Contacts created by the event tracking. You can, however, still potentially create a duplicate Contact via the Mautic administration. As of Mautic 2.1.0, Mautic notifies you if there's already a Contact with the same unique identifier. + +``AND`` is the default operator to find duplicates by unique identifiers. You can choose to use the ``OR`` operator in the Contact Merge :doc:`Settings configuration`. + +.. image:: images/contact-duplicates-operator-configuration.png + :align: center + :alt: Screenshot of Contact duplicates + +| + +Batch actions +============= + +To make updates to several Contacts at once, select those Contacts then click the green arrow at the top of the checkbox column. + +A modal window displays when you click one of the actions, with more configuration details. + + + +You can use this feature to quickly update large volumes of Contacts, but it might be better to use a Campaign action - for example add all the Contacts you need to update into a segment and use a campaign to trigger the change - if you need to change more than a few hundred Contacts at a time. + +.. image:: images/batch-actions.png + :width: 200 + :align: center + :alt: Screenshot of Contact Batch actions + +| + +The following batch actions are currently available: + +* **Change Campaigns** - Allows you to add/remove the selected Contacts to/from Campaigns. + +* **Change Categories** - Allows you to add/remove the selected Contacts to/from global Categories. + +* **Change Channels** - Allows you to subscribe/unsubscribe the selected Contacts to/from communication Channels (Email, SMS, etc.) and also define frequency rules. + +* **Change Owner** - Allows you to assign/unassign the selected Contacts to/from an owner (a Mautic User). + +* **Change Segments** - Allows you to add/remove the selected Contacts to/from Segments. Note that if you add or remove a Contact to or from Segment manually, then Segment filters won't apply for them in that particular Segment. + +* **Change Stages** - Allows you to add/remove the selected Contacts to/from a specified Stage. + +* **Export** - Allows you to export selected Contacts to CSV. + +* **Set Do Not Contact (DNC)** - This action sets all selected Contacts as DNC for the Email Channel, and it allows you to provide a custom message as "reason" for why the Contacts were manually unsubscribed by a Mautic User. + +* **Delete Selected (batch delete)** - The batch delete action in the Contact table allows the deletion of up to 100 Contacts at a time. This limit is there as a performance precaution, since deleting more Contacts at a time could cause performance degradation issues. + +If you need to delete large numbers of Contacts, visit the :doc:`segment docs` which explains how to delete thousands of Contacts easily. + +Contact details +*************** + +Each Contact has a detail page where you can see what Mautic knows about them. + +Engagements chart +================= + +The Engagements line chart display how active the Contact was in the past 6 months. Engagement is any action the Contact made. For example: page hit, Form submission, Email open and so on. The chart displays also the Points which the Contact received. + +Image +===== + +* **Gravatar** - By default, Mautic pulls images from Gravatar. If there’s a :xref:`Gravatar` associated with the Contact’s Email address, Mautic will add the Gravatar photo to the contact record. + +* **Custom** - To add a custom image file to a Contact, edit the Contact record and look for **Preferred profile image** under the image placeholder. + +* **Social** - If you’ve enabled social Plugins and the record includes a social profile, you’ll see options to pull in profile images. + +History +======= + +Event history tracks any engagements between Mautic and a Contact. To find certain event types, search in the **Include events by source** text box. To exclude event types from the history while you’re looking at it, use **Exclude events by source**. + +**Accessed from IP** - IP addresses which the Contact has opened or clicked Emails, visited your tracked pages, etc. from. + +**Added through API** - Contact created through API. + +**Asset Downloaded** - Lists which Assets a Contact downloaded from your Landing Pages or website. Combining this information with other data can help with analyzing what led a Contact to download the Asset. + +**Campaign Action Triggered** - Actions within Campaigns which have already happened. + +**Campaign Event Scheduled** - Actions within Campaigns which take place in the future. Expand the details to see the event’s scheduled date and time. Click the clock icon to reschedule the event, or click **X** to cancel the event. A warning icon means an execution error on the first try caused a rescheduling of the event. + +**Campaign Membership Change** - Changes to which Campaign a Contact is a part of. + +**Contact Created** - This is the first event, showing the date and time the Contact first entered your database - either as a known or anonymous Contact. + +**Contact Created By Source** - The source from which the Contact originated. + +**Contact Identified** - The date and time of Contact identification, moving the Contact from an anonymous to a known Contact. + +**Contact Identified By Source** - How the Contact became identified. + +**Do Not Contact** - The date and time the Contact unsubscribed from your messaging on a particular Channel. + +**Dynamic Content sent** - When the Contact has a Dynamic Content slot pushed to them through a Campaign action. + +**Email Failed** - If an Email to the Contact reports back as the Email address being an invalid address or the Email being undeliverable, Mautic displays an Email failed event with the internal name of the Email shown. + +**Email Read** - The date and time when a specific Email was first read. If the Contact opens the Email multiple times, expanding details on the event type displays the additional opens. + +.. note:: + + To avoid performance issues, Mautic has a limit of displaying a maximum of 1,000 **Email Read** event details. + +**Email Replied** - If a Contact replies to an Email sent through Mautic, the reply displays on the Contact record with this event type. To see this, you must have the **Contact Replies** inbox configured in **Settings** > **Configuration** > **Email Settings**. + +**Email Sent** - When sending a specific Email to a Contact, Mautic lists the internal name of the Email and the time & date of that send. + +**Form Submitted** - Along with showing the name and time and date of the Form submission, expanding the details on this event type shows the data collected on the Form and the location of the Form - called the referrer. + +**Imported** - Dates, times, and file names for all CSV imports that included a Contact. + +**Integration Sync Notice** - Information about connections with Integrations. + +**Message Queue** - When exceeding a Contact’s frequency limits for a Channel and a message on that Channel later triggers to send, a Message Queue event displays with the Channel and the ID for the message that's queued. Expanding details displays: + +* originally scheduled send date +* rescheduled send date +* current status + +If the message is ``Pending``, clicking the X button cancels it. + +**Page Hit** - Time and date of page visits, and the URL if it’s a tracked page on your site or the internal name of a Mautic Landing Page. You may view more information, if tracked, by expanding the details of this event type. + +**Point Gained** The ID number of either: + +* The global point action (in the **Points** section of Mautic) + +* The Campaign where the point action exists, along with the name of the global point action or the Campaign, the number of Points added or subtracted, and the time & date of the point change + +**Segment Membership Change** - When adding or removing Contacts from Segments by any method, those changes display in the event history. + +**Stage Changed** - If you are using **Stages** in Mautic, changes to those Stages displays in the event history + +**Text Message Received** - This event type is for SMS replies, if you are using SMS and have SMS reply tracking configured. Outbound SMS display as ``Campaign Event Scheduled`` or ``Campaign Action Triggered``. + +**UTM Tags Recorded** - If you’re using UTM tags and record them from a Form submission, landing page hit, etc., Mautic displays them here. Expanding the details displays the recorded tags. + +**Video View Event** - Details in this event type include the length of time a prospect watched the video, the percentage of the video watched, the page where the video displays - known as Referrer - and the URL of the video file. + +Some Plugins contain specific events. The events display and are searchable after installing and configuring the Plugin. + +Notes +===== + +It's possible to use Mautic as a basic Customer Relationship Management system (CRM). You or your teammates can write notes for a specific Contact. It's possible to mark a note with a specific purpose; General, Email, Call, Meeting. It's also possible to define a date of a meeting or a call. + +Social +====== + +If a Contact record includes social profiles, you can see them in the **Social** tab. You must have the respective profiles set up in **Settings** > **Plugins**. + +Integrations +============ + +If the Contact exists in other tools has connections through Plugin or API Integrations, you’ll see those here. This helps identify where a Contact came from, or what other internal systems the Contact exists in. + +Map +=== + +If Mautic knows the coordinates of the Contact from a geolocation IP lookup service, it displays a fourth tab with a map so you can easily see the Contact's location. If Mautic knows more locations for this Contact as they travel, you'll see all the locations there. If Mautic doesn't know any location, the tab won't show up. + +.. vale off + +Change Contact Segments +======================= + +.. vale on + +.. image:: images/change-segments.jpeg + :align: center + :alt: Screenshot of change Segment + +| + +1. Click the **drop down box arrow** in the top right hand corner of the Contact detail. + +2. Select **Segments**. A modal box shows up where you'll see all the Segments. The green switch means that the Contact belongs to the Segment, the orange switch means the opposite. + +3. Click the **switch** to add/remove the Contact to/from the Segment. + +.. vale off + +Change Contact Campaigns +======================== + +.. vale on + +1. Click the **drop down box arrow** in the top right hand corner of the Contact detail. + +2. Select **Campaigns**. A modal box shows up where you'll see all the Campaigns. The green switch means that the Contact belongs to the Campaign, the orange switch means the opposite. + +3. Click the **switch** to add/remove the Contact to/from the Campaign. + +.. vale off + +Merge two Contacts +================== + +.. vale on + +If you have 2 Contacts in the Mautic database who are physically one person, you can merge them with the Merge feature. + +1. Click the drop down box arrow in the top right hand corner of the Contact detail, + +2. Select the Merge item, a modal box shows up. + +3. Search for the Contact you want to merge into the current Contact. The select box updates as you search. + +4. Select the right Contact and hit the **Merge** button. + +.. vale off + +Send Email to Contact +===================== + +.. vale on + +This option enables Users to send an individual Email, either manually created with the builder or from a template Email. The **From Name** and **From Email Address** default to the User sending the individual message. + Contact tracking -**************** \ No newline at end of file +**************** + +The act of monitoring the traffic and activity of Contacts can sometimes be somewhat technical and frustrating to understand. Mautic makes this monitoring simple and easy to configure. + +Website monitoring +================== + +It's possible to use Mautic to monitor all traffic on a website by loading a JavaScript file - recommended - or by adding a tracking pixel to resources. It's important to note that traffic isn't monitored from logged-in Mautic Users. To verify that the JavaScript/pixel is working, use an incognito or private browsing window or log out of Mautic prior to testing. + +Note that by default, Mautic won't track traffic originating from the same :xref:`private network` as itself, but you can configure Mautic to track this internal traffic by setting the ``track_private_ip_ranges`` configuration option to ``true`` in ``app/config/local.php`` then and then :xref:`clearing the symfony cache`. + +.. vale off + +Tracking script (``JavaScript``) +-------------------------------- + +.. vale on + +Since Mautic 1.4 the JavaScript tracking method is the primary way of website tracking. To implement it: + +1. Go to Mautic > *Settings* by clicking the cogwheel at the top right > *Configuration* > *Tracking Settings* to find the JS tracking code build for the Mautic instance + +2. Insert the code before the ending ```` tag of the website you want to track + +Or, copy the code below and change the URL to your Mautic instance. + +Mautic sets cookies with a lifetime of 1 year, with returning visitors identified exclusively by the cookie. If no cookie exists yet, Mautic creates a new Contact and sets the cookie. + +Make sure you enter your website URL correctly as outlined in the :doc:`CORS settings`. + +Note that if a browser doesn't accept cookies, this may result in each hit creating a new visitor. + +.. code-block:: + + + +*Don't forget to change the scheme (http(s)) either to http or https depending what scheme you use for your Mautic. Also, change [example.com] to the domain where your Mautic runs.* + +The advantage of JavaScript tracking is that the tracking request - which can take quite long time to load - loads asynchronously, so it doesn't slow down the tracked website. JavaScript also allows you to track more information automatically: + +* **Page Title** is the text written between ```` tags + +* **Page Language** is the language defined in the browser. + +* **Page Referrer** is the URL which the Contact came from to the current website. + +* **Page URL** the URL of the current website. + +mt() events +~~~~~~~~~~~ + +mt() supports two callbacks, ``onload`` and ``onerror`` accepted as the fourth argument. The ``onload`` method fires at loading of the pixel. If the pixel fails for whatever reason, it triggers ``onerror``. + +.. code:: shell + + mt('send', 'pageview', {}, { + onload: function() { + redirect(); + }, + onerror: function() { + redirect(); + } + }); + +Local Contact cookie (first party cookie) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +.. _local-contact-cookies: + +If you've configured CORS to allow access from the domain where you've embedded the mtc.js, Mautic places a cookie on the same domain with the name of ``mtc_id``. This cookie has the value of the ID for the currently tracked Contact but isn't used to track the Contact. This enables the server side software to access the Contact ID, and thus providing the ability to integrate with Mautic's REST API as well. + +Valid Domains for CORS must include the full domain name as well as the protocol. For example, ``http://example.com``, if you serve up secure and non-secure pages you should include both ``https://example.com`` as well ``http://example.com``. All subdomains will need to be listed as well for example, ``http://example.com`` and ``http://www.example.com`` , if your server allows this. If you would like to allow all subdomains, an asterisk can be used as a wildcard for example, ``http://*.example.com``. + +Tracking of custom parameters +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +You can attach custom parameters or overwrite the automatically generated parameters to the ``pageview`` action as you could to the tracking pixel query. To do that, update the last row of the preceding JS code like this: + +``mt('send', 'pageview', {email: 'my@email.com', firstname: 'John'});`` + +This code sends all the automatic data to Mautic and adds also ``email`` and ``firstname``. Your system must generate the values of those fields. + +The tracking code also supports Company fields. Mautic can assign a Company to your tracked Contact based on Company name. Then you have to add the **company** or ``**companyname**`` parameter to the tracking code, along with other Companies fields such as ``companyemail``, ``companyaddress1``, ``companyaddress2``, ``companyphone``, ``companycity``, ``companystate``, ``companyzipcode``, ``companycountry``, ``companywebsite``, ``companynumber_of_employees``, ``companyfax``, ``companyannual_revenue``, ``companyindustry``, ``companyindustry``, ``companydescription``. + +You can also use Contact tags and UTM codes. + +``mt('send', 'pageview', {email: 'my@example.com', firstname: 'John', company: 'Mautic', companyemail: 'mautic@example.com', companydescription: 'description of company', companywebsite: 'https://example.com', tags: 'addThisTag,-removeThisTag', utm_campaign: 'Some Campaign'});`` + +.. vale off + +Load Event +~~~~~~~~~~ + +.. vale on + +To have JS call a function on loading of a request, define an ``onload`` function in the options. This is possible due to the asynchronous loading of the JS tracking request. Here's how you do it: + +``mt('send', 'pageview', {email: 'my@example.com', firstname: 'John'}, {onload: function() { alert("Tracking request is loaded"); }});`` + +Tracking pixel +============== + +It's recommended to use the tracking script with CORS properly configured instead of the tracking pixel. If that's not possible for whatever reason, use the tracking pixel. The tracking pixel uses third party cookies for tracking. + +``https://example.com/mtracking.gif`` + +Tracking pixel query +-------------------- + +To get the most out of the tracking pixel, it's recommended that you pass information of the web request through the image URL. + +Page information +~~~~~~~~~~~~~~~~ + +Mautic currently supports ``page_url``, ``referrer``, ``language``, and ``page_title`` - note that the use of ``url`` and ``title`` is deprecated due to conflicts with Contact fields. + +UTM code +~~~~~~~~ + +Currently, Mautic uses ``utm_medium``, ``utm_source``, ``utm_campaign``, ``utm_content``, and ``utm_term`` to generate the content in a new timeline entry. + +``utm_campaign`` is the timeline entry's title. + +``utm_medium`` displays using the following Font Awesome classes: + +All the UTM tags are available in the time entry, just by toggling the entry details button. + +Please note that Mautic records UTM tags only on a Form submission that contains the action "Record UTM Tags". + +.. list-table:: + :widths: 100 100 + :header-rows: 1 + + * - Values + - Class + * - social, ``socialmedia`` + - fa-share-alt if utm_source isn't available, otherwise Mautic uses utm_source as the class. For example, if utm_source is Twitter, the entry uses fa-twitter. + * - email, newsletter + - fa-envelope-o + * - banner, ad + - fa-bullseye + * - ``cpc`` + - fa-money + * - location + - fa-map-marker + * - ``device`` + - fa-tablet if utm_source isn't available otherwise Mautic uses utm_source as the class. For example, if utm_source is Mobile, Mautic uses fa-mobile. + +All the UTM tags are available in the time entry, just by toggling the entry details button. + +Please note that Mautic records UTM tags only on a Form submission that contains the action "Record UTM Tags". + +Contact fields +~~~~~~~~~~~~~~ + +You can also pass information specific to your Contact by setting Mautic Contact ``field(s)`` to be publicly editable. Note that values appended to the tracking pixel should be ``url`` encoded - %20 for spaces, %40 for @, etc. + +Tags +~~~~ + +You can change the Contact's Tags by using the ``tags`` query parameter. Multiple Tags can be separated by comma. To remove a Tag, prefix it with a dash (minus sign). + +For example, ``mtracking.gif?tags=ProductA``,-ProductB would add the ProductA Tag to the Contact and remove ProductB. + +Embedding the pixel +------------------- + +If you're using a Content Management System, the easiest way is to let one of the available Plugins do this for you - see below. Note that the Plugins may not support all Contact fields, UTM codes or Contact tags. + +Here are a couple code snippets that may help as well: + +HTML +~~~~ + +.. code-block:: shell + + mautic is open source marketing automation + +PHP +~~~ + +.. code-block:: php + + $d = urlencode(base64_encode(serialize(array( + 'page_url' => 'https://' . $_SERVER[HTTP_HOST] . $_SERVER['REQUEST_URI'], + 'page_title' => $pageTitle, // Use your website's means of retrieving the title or manually insert it + 'email' => $loggedInUsersEmail // Use your website's means of user management to retrieve the email + )))); + + echo ''; + +JavaScript +~~~~~~~~~~ + +.. code-block:: + + + +.. vale off + +Available Plugins +~~~~~~~~~~~~~~~~~ + +.. vale on + +Mautic makes this even easier by providing key Integrations to many existing Content Management Systems. You can download and use any of the following Plugins to automatically add that tracking pixel to your website. + +.. vale off + +* Joomla! +* Drupal +* WordPress +* TYPO3 +* Concrete5 +* Grav + +.. vale on + +These are just a few of the Integrations already created by the Mautic community. It's expected that the list grows as developers submit their own Integrations. + +.. note:: + + It's important to note that you aren't limited by these Plugins and you can place the tracking pixel directly on any HTML page for website tracking. + +Identify visitors by tracking URL +--------------------------------- + +There's a configuration section for identifying visitors by tracking URL although this isn't recommended for use as it's open to abuse with spoof tracking. If enabled, Mautic identifies returning visitors by tracking URLs from Channels - especially from Emails - when no cookie exists yet. + +.. note:: + + For this to work you must mark the Email Contact field as a unique identifier and it must be publicly editable in your Mautic configuration. + +How are Contacts tracked with the tracking script? +================================================== + +When using the tracking script, Mautic tracks Contacts with third party cookies on the Mautic instance's domain and/or the browser's local storage. + +Although the script writes first party cookies to the tracked domain which expires with the session, they're **not** used for tracking. See :ref:`Local Contact cookie (first party cookie)`. + +When a Contact visits the website for the first time, the tracking script makes a call to Mautic. Mautic looks for the ``mautic_device_id`` cookie on its domain. If Mautic finds the cookie and identifies the ``device_id`` in its database, it associates the request with the Contact tied to that specific device. + +Mautic returns the Contact ID, the device ID, and a legacy session ID which is the same as the device ID. Mautic stores these values in the browser's local storage - if applicable - and it's written to the site's domain as a first party cookie - not used for tracking.``` + +The next time the tracking script sends a request to Mautic, it uses the device ID from the browser's local storage to identify the tracked Contact. If that can't be found, Mautic defaults to the cookies stored on it's own domain, using third party cookies to identify the Contact. + +Mobile monitoring +================= + +The essence of monitoring what happens in an App is similar to monitoring what happens on a website. Mautic contains the building blocks needed for native - or pseudo-native - and HTML5-wrapper based Apps, regardless of platform. + +In short, use named screen views - for example, main_screen - in your App as your page_url field in the tracker, and the Contact's Email as the unique identifier, see next section for detailed instructions. + +Steps in Mautic +--------------- + +1. Make the Email field publicly editable, this means that a call to the tracking GIF with the variable ``email`` gets properly recognized by Mautic. + +2. Set up a Form, as the access point of your Campaign - for example, a new Contact Email. Make this Form as simple as you can, as you POST to it from your App. The typical Form URL you POST to is ``https://example.com/form/submit?formId=`` + +You can get the ID from the Mautic URL as you view / edit the Form in the Mautic interface or in the Forms tables, last column. You can find the Form fields by looking at the HTML of the 'Manual Copy' of the HTML in the Forms editing page. + +3. Define in your Campaigns the screens you want to use as triggers - for example, 'cart_screen' etc. Mautic isn't looking for a real URL in the Form ``https://`` for ``page_url``, any typical string would do. Like this: ``https://example.com/mtracking.gif?page_url=cart_screen&email=myemail@example.com`` + +.. vale off + +In your App +----------- + +.. vale on + +A best-in-class approach is to have a class (say 'Mautic') that handles all your tracking needs. For example, this sample method call would POST to the Form with ID 3 - see previous section. + + .. note:: + + For conciseness and ubiquity, these samples are in JavaScript / ECMAScript-type language, use similar call in your mobile App language of choice. + +``mautic.addContact("myemail@example.com",3)`` + +And then, to track individual Contact activity in the App, this sample call would make an ``HTTP`` request to the tracker: + +``mautic.track("cart_screen", "myemail@example.com")`` + +Which is nothing more than an ``HTTP`` request to this GET-formatted URL - as also shown in previous section: + +``https://example.com/mtracking.gif?page_url=cart_screen&email=myemail@example.com`` + + +.. important:: + + Make sure in your App, that the ``HTTP`` request is using a cookie - if possible, re-use the cookie from the ``mautic.addcontact`` POST request prior - **and** that you reuse this cookie from one request to the next. This is how Mautic - and other tracking software - knows that it's really the same Contact. If you can't do this, you may run into the - unlikely but possible - case where you have multiple Contacts from the same IP address and Mautic will merge them all into a single Contact, as it can't tell who is who without a cookie. + +.. vale off + +Google Analytics and Facebook Pixel tracking support +==================================================== + +.. vale on + +Mautic supports Contact tracking using Google Analytics and the Facebook pixel. Go to Mautic **Configuration** > **Tracking Settings** and set up: + +* **Google Analytics ID** +* **Facebook Pixel ID** + +Tracking codes support also Google Analytics USERID and Facebook Pixel Advanced Matching. + +.. vale off + +Campaign action Send tracking event +----------------------------------- + +.. vale on + +There is a Campaign action which allows you to send a custom event to Google Analytics or Facebook Pixel - it depends on there being a 'Visits a Page' decision immediately before it in the Campaign workflow. + +.. vale off + +How to test Google Analytics tracking code and campaign action +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. vale on + +* Install **Tag Assistant** and enable recording on your website +* Create Campaign with the 'Visits a Page' decision and 'Send tracking event' action +* Test it and verify in the Tag Assistant debug window that you see one ``Pageview`` request and one event + +.. image:: images/google-analytics-tag-assistent.png + :align: center + :alt: Screenshot of Google Analytics + +| + +How to test Facebook Pixel tracking code and campaign action +------------------------------------------------------------ + +* Install the Facebook Pixel Helper +* Create Campaign with a 'Visits a Page' decision and a 'Send tracking event' action +* Test it and verify in the Facebook Pixel Helper debug window that you see one ``Pageview`` and one custom event action + +.. image:: images/facebook-pixel-helper.png + :align: center + :alt: Screenshot of Facebook pixel + +| + +You can use events for Remarketing with Analytics and Facebook Ads. + +.. vale off + +Other Online Monitoring +======================= + +.. vale on + +There are several other ways to monitor Contact activity and attach Points to those activities. Website monitoring is only one way to track Contacts. Other Contact monitoring activities can consist of forum posts, chat room messages, mailing list discussion posts, GitHub/Bitbucket messages, code submissions, social media posts, and a myriad of other options. + +Troubleshooting +=============== + +If the tracking doesn't work, take a look at the :ref:`troubleshooting` section. + +Cookies used by Mautic +====================== + +This is a list of cookies potentially used by Mautic when tracking Contacts. Note that if using the tracking script, Mautic uses the browser's local storage to store a device ID used to track the Contact. + +Third party cookies +------------------- + +.. list-table:: Campaign Actions in Mautic + :header-rows: 1 + :widths: 20 25 30 25 + + * - Name + - Expiration + - Used by Mautic for tracking? + - Description + * - mautic_device_id + - 1 year + - Yes + - Used by Mautic to track the Contact for either the tracking pixel or if the same key isn't found in the brower's local storage for the monitored site. + * - ``mtc_id`` + - session + - No + - Stores the Mautic ID of the tracked Contact. No longer used - deprecated in Mautic 2.13 - but retained for backwards compatibility. + * - ``mautic_referer_id`` + - session + - Yes + - Stores a reference to the last tracked page for the Contact and used by Mautic to determine when a Contact exists a page they visited. + * - ``mtc_sid`` + - session + - No + - Deprecated cookie that's the same as mautic_device_id. It's no longer actively used by Mautic but kept for BC reads. + * - ``mautic_session_id`` + - unknown + - No + - Deprecated in Mautic 2 - no longer supported - and removed from Mautic 3 + +First party +----------- + +.. list-table:: Campaign Actions in Mautic + :header-rows: 1 + :widths: 20 25 30 25 + + * - Name + - Expiration + - Used by Mautic for tracking? + - Description + * - mautic_device_id + - session + - No + - The monitored site may use this, but isn't used by Mautic to actively track the Contact. + * - ``mtc_id`` + - session + - No + - Stores the Mautic ID for the tracked Contact. It's not used for tracking. The monitored site can use this to leverage Mautic's REST API on the backend for the purposes of manipulating the Contact. + * - ``mtc_sid`` + - session + - No + - Deprecated cookie that's the same as mautic_device_id. It's no longer used by Mautic but kept for BC reads. \ No newline at end of file diff --git a/docs/contacts/preference_center.rst b/docs/contacts/preference_center.rst index c52baf1a..9b4352b6 100644 --- a/docs/contacts/preference_center.rst +++ b/docs/contacts/preference_center.rst @@ -1,8 +1,196 @@ -.. vale off - Preference center ################# + +.. vale off + +Manage Contact preferences +************************** + +.. vale on + +When managing a Contact in Mautic, you have the ability to customize their communication preferences. To access the Contact's Preference Center, follow these steps: + +1. Open the Contact's profile - To access a Contact's profile, navigate to the Contacts section in Mautic and click the desired Contact's name. + +2. Access the Preference Center - Once you are viewing the Contact's profile, locate the dropdown menu and click the **Preferences** option. A new modal window appears with various customization options. + +In the Preference Center, you find three main tabs: + +* Channels and Frequency - This tab allows you to set the preferred Channels for communicating with the Contact and how often they should receive messages. You can also pause communication for a specified period if needed. + +* Categories - In this tab, you have the option to add or remove the Contact from global Categories used in Emails or other marketing materials. This helps to ensure that the Contact only receives content relevant to their interests. + +* Segments - The third tab enables you to add or remove the Contact from specific Segments they belong to. This is useful for refining your audience and targeting Contacts based on their behavior, preferences, or other attributes. + +.. vale off + +Preferred Channels and frequency +================================ + .. vale on -Customize preference center -*************************** \ No newline at end of file +.. image:: images/preferences.png + :align: center + :alt: Screenshot of Preference + +| + +In this window you can switch Channels of communication, set the frequency of the communication via each Channel enabled, and set one of the Channels as a preferred Channel. + +To prevent communications through a Channel, remove the select next to the Channel name in the first column. This sets a Do Not Contact (DNC entry) for only that Channel. + +When selecting a Channel, Mautic uses this to send Marketing Messages if there is a message set for any of the Channels selected. You can also set the frequency of the communication, as in this example the set frequency is "Send Emails twice a day" but to pause them between November 1 2022 and November 30 2022. Email is also set as the preferred Channel, so if the Marketing Message has the same message for both Email and SMS, it only sends the Email version of the message to the selected Contact + +.. vale off + +Contact Categories +================== + +.. vale on + +.. image:: images/categories.png + :align: center + :alt: Screenshot of Categories + +| + +Use the Categories tab to add or remove a Contact from a global Category. Mautic uses Global Categories in areas like Emails, Text Messages and, Campaigns. In combination with the Subscribed Categories Segment filter, Contacts can opt out of categorized communications. + +.. vale off + +Contact Segments +================ + +.. vale on + +.. image:: images/segments.png + :align: center + :alt: Screenshot of Segments + +| + +Use the Segments tab to add or remove a Contact from a Segment. Segments are a source for both starting Campaigns and sending Emails. Any Contact in a particular Segment is automatically part of a Campaign that has that Segment as the source. You can also use a standalone Email to manually send an Email to a Segment. If a User has opted out of a Segment they no longer receive Campaign actions or messages sent to that Segment. + +.. vale off + +Contact's unsubscribe Email preferences +======================================= + +.. vale on + +.. image:: images/email-unsubscribe-settings.png + :align: center + :alt: Screenshot of Email unsubscribe + +| + +You can customize the unsubscribe page to display a Contact's preferences by adjusting the Email configuration settings in Mautic. This allows Contacts to manage their preferences when they unsubscribe, instead of being directly unsubscribed. Follow these steps: + +1. In the left sidebar, click the gear icon to access the **Configuration** menu. + +2. Navigate to the **Email Settings** tab. + +3. Look for the "Show Contact Preference Settings" option and select the box to enable it. This displays Contact preferences on the unsubscribe page, allowing Contacts to manage their subscription settings. + +4. Additionally, you can choose to hide or show different Segments in the User preferences by adjusting the corresponding settings. + +Please note that if you turn off any of these options in the global settings, they won't appear on the Contact's personal preferences page. When the preference setting option is turn off, Mautic shows the default unsubscribe message, and the Contact gets directly unsubscribed without the ability to manage their preferences. + +.. image:: images/unsubscribe.png + :align: center + :alt: Screenshot of Unsubscribe + +| + +Customize Preference Center +*************************** + +It's possible to customize the personal Preference Center/unsubscribe page, edit text labels, format, and apply Themes using the Landing Page builder. + +.. vale off + +Creating a Preference Center Landing Page +========================================= + +.. vale on + +When creating/editing a Landing Page, there is a toggle switch labeled *Is Preference Center*. If selected, Mautic marks the Page as a Preference Center Landing Page, making available the appropriate tokens. + +When configured as a Preference Center in a Mautic Email, Mautic automatically directs recipients to this Preference Center when clicking on the ``{unsubscribe_url}`` link. It also shows or hides the Preference Center slots in the Builder. + +.. image:: images/pref1.png + :align: center + :alt: Screenshot of Preference Center switch on a Landing Page + +| + +Preference tokens +****************** + +You can use :ref:`Preference Center Landing Page tokens` to insert the different slots. These are available as tokens in the editor in the GrapesJS Builder. + +.. image:: images/pref3.png + :align: center + :alt: Screenshot of Preference Center tokens in editor + +| + +See the :ref:`Variables` documentation for a full list of tokens available for use with a Preference Center. + +In addition, add a **Save preferences** button if you wish to save the preferences, otherwise the Contact can't save their preferences: + +Save your changes, and the Preference Center Landing Page is ready. + +.. vale off + +Accessing Preference Center Pages +********************************* + +.. vale on + +Now in the Landing Pages list, the icon with the cog icon indicates that the Page is a Preference Center. + +.. image:: images/pref7.png + :align: center + :alt: Screenshot of Preference Center showing icon to denote a Preference Center + +| + +When viewing a Preference Center Page, there is a header indicating its purpose and the Page URL isn't available, only the preview URL. + +.. image:: images/pref8.png + :align: center + :alt: Screenshot of Preference Center with the preview URL only + +| + +.. vale off + +Setting Preference Center Pages in Emails +***************************************** + +.. vale on + +When creating or editing an Email, you can select the Preference Center Page from the list as shown: + +.. image:: images/pref5.png + :align: center + :alt: Screenshot of Preference Center select box when creating an Email + +| + +Keep in mind that your mail must use the same language as the Preference Center landing page - if not, Mautic shows the default Preference Center. + +Now when sending the Email, all recipients can click the Unsubscribe link provided in the ``{unsubscribe_text}`` and ``{unsubscribe_url}`` variables, taking them to the new Preference Center. + +.. image:: images/pref6.png + :align: center + :alt: Screenshot of Preference Center as a Contact + +| + +If you don't select a Preference Center in an Email, Mautic uses the default Preference Center styled with the default Theme. + +.. image:: images/unsubscribe.png + :align: center + :alt: Screenshot of Unsubscribe diff --git a/docs/css/tablefix.css b/docs/css/tablefix.css index 8d367b00..2ffd5109 100644 --- a/docs/css/tablefix.css +++ b/docs/css/tablefix.css @@ -1,14 +1,25 @@ -/* override table width restrictions */ -.wy-table-responsive table td, .wy-table-responsive table th { - white-space: normal; +/* Ensure the table takes full width and allows wrapping */ +.wy-table-responsive table.docutils { + width: 100% !important; + table-layout: auto !important; } +/* Target the cells and the code blocks inside them */ +.wy-table-responsive table.docutils td, +.wy-table-responsive table.docutils td code, +.wy-table-responsive table.docutils td span.pre { + white-space: normal !important; /* Allows text to wrap to next line */ + word-break: break-word !important; /* Breaks long strings at sensible points */ + overflow-wrap: anywhere !important; /* Support for all modern browsers */ +} + +/* Prevent the container from forcing a horizontal scrollbar */ .wy-table-responsive { - margin-bottom: 24px; - max-width: 100%; - overflow: visible; + overflow: visible !important; } -.wy-table-responsive th p { - margin-bottom: unset; +img.align-center { + margin-left: auto; + margin-right: auto; + display: block; } \ No newline at end of file diff --git a/docs/docs_translations/.doctrees/authentication/authentication.doctree b/docs/docs_translations/.doctrees/authentication/authentication.doctree deleted file mode 100644 index 06e8cca4..00000000 Binary files a/docs/docs_translations/.doctrees/authentication/authentication.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/builders/creating_themes.doctree b/docs/docs_translations/.doctrees/builders/creating_themes.doctree deleted file mode 100644 index a540d27b..00000000 Binary files a/docs/docs_translations/.doctrees/builders/creating_themes.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/builders/email_landing_page.doctree b/docs/docs_translations/.doctrees/builders/email_landing_page.doctree deleted file mode 100644 index 138eae6b..00000000 Binary files a/docs/docs_translations/.doctrees/builders/email_landing_page.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/campaigns/campaign_builder.doctree b/docs/docs_translations/.doctrees/campaigns/campaign_builder.doctree deleted file mode 100644 index 780da18e..00000000 Binary files a/docs/docs_translations/.doctrees/campaigns/campaign_builder.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/campaigns/campaigns_overview.doctree b/docs/docs_translations/.doctrees/campaigns/campaigns_overview.doctree deleted file mode 100644 index 09c9a0d8..00000000 Binary files a/docs/docs_translations/.doctrees/campaigns/campaigns_overview.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/campaigns/creating_campaigns.doctree b/docs/docs_translations/.doctrees/campaigns/creating_campaigns.doctree deleted file mode 100644 index f67cf14f..00000000 Binary files a/docs/docs_translations/.doctrees/campaigns/creating_campaigns.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/campaigns/managing_campaigns.doctree b/docs/docs_translations/.doctrees/campaigns/managing_campaigns.doctree deleted file mode 100644 index eaa33a05..00000000 Binary files a/docs/docs_translations/.doctrees/campaigns/managing_campaigns.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/campaigns/troubleshooting_campaigns.doctree b/docs/docs_translations/.doctrees/campaigns/troubleshooting_campaigns.doctree deleted file mode 100644 index 3dd6156e..00000000 Binary files a/docs/docs_translations/.doctrees/campaigns/troubleshooting_campaigns.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/categories/categories-overview.doctree b/docs/docs_translations/.doctrees/categories/categories-overview.doctree deleted file mode 100644 index b74c6e20..00000000 Binary files a/docs/docs_translations/.doctrees/categories/categories-overview.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/channels/emails.doctree b/docs/docs_translations/.doctrees/channels/emails.doctree deleted file mode 100644 index d9982fc6..00000000 Binary files a/docs/docs_translations/.doctrees/channels/emails.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/channels/focus_items.doctree b/docs/docs_translations/.doctrees/channels/focus_items.doctree deleted file mode 100644 index 1ad137b6..00000000 Binary files a/docs/docs_translations/.doctrees/channels/focus_items.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/channels/marketing_messages.doctree b/docs/docs_translations/.doctrees/channels/marketing_messages.doctree deleted file mode 100644 index 352849e8..00000000 Binary files a/docs/docs_translations/.doctrees/channels/marketing_messages.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/channels/push_notifications.doctree b/docs/docs_translations/.doctrees/channels/push_notifications.doctree deleted file mode 100644 index 269eeb18..00000000 Binary files a/docs/docs_translations/.doctrees/channels/push_notifications.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/channels/sms.doctree b/docs/docs_translations/.doctrees/channels/sms.doctree deleted file mode 100644 index 5c35c320..00000000 Binary files a/docs/docs_translations/.doctrees/channels/sms.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/channels/social_monitoring.doctree b/docs/docs_translations/.doctrees/channels/social_monitoring.doctree deleted file mode 100644 index 0d8d5f3f..00000000 Binary files a/docs/docs_translations/.doctrees/channels/social_monitoring.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/channels/utm_tags.doctree b/docs/docs_translations/.doctrees/channels/utm_tags.doctree deleted file mode 100644 index d6fad8b7..00000000 Binary files a/docs/docs_translations/.doctrees/channels/utm_tags.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/channels/web_notifications.doctree b/docs/docs_translations/.doctrees/channels/web_notifications.doctree deleted file mode 100644 index b1e2fd8b..00000000 Binary files a/docs/docs_translations/.doctrees/channels/web_notifications.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/companies/companies_overview.doctree b/docs/docs_translations/.doctrees/companies/companies_overview.doctree deleted file mode 100644 index d9e84233..00000000 Binary files a/docs/docs_translations/.doctrees/companies/companies_overview.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/components/assets.doctree b/docs/docs_translations/.doctrees/components/assets.doctree deleted file mode 100644 index 1f1a7751..00000000 Binary files a/docs/docs_translations/.doctrees/components/assets.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/components/dynamic_web_content.doctree b/docs/docs_translations/.doctrees/components/dynamic_web_content.doctree deleted file mode 100644 index 2a9c1f0a..00000000 Binary files a/docs/docs_translations/.doctrees/components/dynamic_web_content.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/components/forms.doctree b/docs/docs_translations/.doctrees/components/forms.doctree deleted file mode 100644 index a6a6e3c8..00000000 Binary files a/docs/docs_translations/.doctrees/components/forms.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/components/landing_pages.doctree b/docs/docs_translations/.doctrees/components/landing_pages.doctree deleted file mode 100644 index 1a88364e..00000000 Binary files a/docs/docs_translations/.doctrees/components/landing_pages.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/configuration/command_line_interface.doctree b/docs/docs_translations/.doctrees/configuration/command_line_interface.doctree deleted file mode 100644 index e739aad8..00000000 Binary files a/docs/docs_translations/.doctrees/configuration/command_line_interface.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/configuration/cron_jobs.doctree b/docs/docs_translations/.doctrees/configuration/cron_jobs.doctree deleted file mode 100644 index 30b4d727..00000000 Binary files a/docs/docs_translations/.doctrees/configuration/cron_jobs.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/configuration/maxmind_license.doctree b/docs/docs_translations/.doctrees/configuration/maxmind_license.doctree deleted file mode 100644 index c3236387..00000000 Binary files a/docs/docs_translations/.doctrees/configuration/maxmind_license.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/configuration/settings.doctree b/docs/docs_translations/.doctrees/configuration/settings.doctree deleted file mode 100644 index 927328ed..00000000 Binary files a/docs/docs_translations/.doctrees/configuration/settings.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/configuration/variables.doctree b/docs/docs_translations/.doctrees/configuration/variables.doctree deleted file mode 100644 index 53f445fd..00000000 Binary files a/docs/docs_translations/.doctrees/configuration/variables.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/contacts/custom_fields.doctree b/docs/docs_translations/.doctrees/contacts/custom_fields.doctree deleted file mode 100644 index 42c6ffb7..00000000 Binary files a/docs/docs_translations/.doctrees/contacts/custom_fields.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/contacts/frequency_rules.doctree b/docs/docs_translations/.doctrees/contacts/frequency_rules.doctree deleted file mode 100644 index faf437e9..00000000 Binary files a/docs/docs_translations/.doctrees/contacts/frequency_rules.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/contacts/import_contacts.doctree b/docs/docs_translations/.doctrees/contacts/import_contacts.doctree deleted file mode 100644 index 450e3004..00000000 Binary files a/docs/docs_translations/.doctrees/contacts/import_contacts.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/contacts/manage_contacts.doctree b/docs/docs_translations/.doctrees/contacts/manage_contacts.doctree deleted file mode 100644 index 00b227e1..00000000 Binary files a/docs/docs_translations/.doctrees/contacts/manage_contacts.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/contacts/preference_center.doctree b/docs/docs_translations/.doctrees/contacts/preference_center.doctree deleted file mode 100644 index bddc734d..00000000 Binary files a/docs/docs_translations/.doctrees/contacts/preference_center.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/dashboard/dashboard.doctree b/docs/docs_translations/.doctrees/dashboard/dashboard.doctree deleted file mode 100644 index 1fbae19c..00000000 Binary files a/docs/docs_translations/.doctrees/dashboard/dashboard.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/environment.pickle b/docs/docs_translations/.doctrees/environment.pickle deleted file mode 100644 index df0c34fa..00000000 Binary files a/docs/docs_translations/.doctrees/environment.pickle and /dev/null differ diff --git a/docs/docs_translations/.doctrees/getting_started/how_to_install_mautic.doctree b/docs/docs_translations/.doctrees/getting_started/how_to_install_mautic.doctree deleted file mode 100644 index fdf7a507..00000000 Binary files a/docs/docs_translations/.doctrees/getting_started/how_to_install_mautic.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/getting_started/how_to_update_mautic.doctree b/docs/docs_translations/.doctrees/getting_started/how_to_update_mautic.doctree deleted file mode 100644 index 2c13884c..00000000 Binary files a/docs/docs_translations/.doctrees/getting_started/how_to_update_mautic.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/getting_started/switching_composer.doctree b/docs/docs_translations/.doctrees/getting_started/switching_composer.doctree deleted file mode 100644 index 14f59903..00000000 Binary files a/docs/docs_translations/.doctrees/getting_started/switching_composer.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/index.doctree b/docs/docs_translations/.doctrees/index.doctree deleted file mode 100644 index 9c02cedf..00000000 Binary files a/docs/docs_translations/.doctrees/index.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/marketplace/marketplace.doctree b/docs/docs_translations/.doctrees/marketplace/marketplace.doctree deleted file mode 100644 index 95e2fad9..00000000 Binary files a/docs/docs_translations/.doctrees/marketplace/marketplace.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/overview/overview.doctree b/docs/docs_translations/.doctrees/overview/overview.doctree deleted file mode 100644 index 6340825d..00000000 Binary files a/docs/docs_translations/.doctrees/overview/overview.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/amazon.doctree b/docs/docs_translations/.doctrees/plugins/amazon.doctree deleted file mode 100644 index 16d4ad81..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/amazon.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/citrix.doctree b/docs/docs_translations/.doctrees/plugins/citrix.doctree deleted file mode 100644 index 6cf45116..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/citrix.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/clearbit.doctree b/docs/docs_translations/.doctrees/plugins/clearbit.doctree deleted file mode 100644 index f9e0d1bb..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/clearbit.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/connectwise.doctree b/docs/docs_translations/.doctrees/plugins/connectwise.doctree deleted file mode 100644 index c5730c98..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/connectwise.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/fullcontact.doctree b/docs/docs_translations/.doctrees/plugins/fullcontact.doctree deleted file mode 100644 index 5612f00c..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/fullcontact.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/gmail.doctree b/docs/docs_translations/.doctrees/plugins/gmail.doctree deleted file mode 100644 index 035543f5..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/gmail.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/hubspot.doctree b/docs/docs_translations/.doctrees/plugins/hubspot.doctree deleted file mode 100644 index 5c5c96cf..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/hubspot.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/icontact.doctree b/docs/docs_translations/.doctrees/plugins/icontact.doctree deleted file mode 100644 index 90eb87fa..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/icontact.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/mailchimp.doctree b/docs/docs_translations/.doctrees/plugins/mailchimp.doctree deleted file mode 100644 index 574276ad..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/mailchimp.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/microsoft_dynamics_crm.doctree b/docs/docs_translations/.doctrees/plugins/microsoft_dynamics_crm.doctree deleted file mode 100644 index 9c5c9897..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/microsoft_dynamics_crm.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/microsoft_outlook.doctree b/docs/docs_translations/.doctrees/plugins/microsoft_outlook.doctree deleted file mode 100644 index 35254b84..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/microsoft_outlook.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/pipedrive.doctree b/docs/docs_translations/.doctrees/plugins/pipedrive.doctree deleted file mode 100644 index a6d75ad9..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/pipedrive.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/plugin_resources.doctree b/docs/docs_translations/.doctrees/plugins/plugin_resources.doctree deleted file mode 100644 index c1b4deb7..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/plugin_resources.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/salesforce.doctree b/docs/docs_translations/.doctrees/plugins/salesforce.doctree deleted file mode 100644 index 99a57e8a..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/salesforce.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/social_login.doctree b/docs/docs_translations/.doctrees/plugins/social_login.doctree deleted file mode 100644 index f3fc7d34..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/social_login.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/sugar_crm.doctree b/docs/docs_translations/.doctrees/plugins/sugar_crm.doctree deleted file mode 100644 index 025673ac..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/sugar_crm.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/tag_manager.doctree b/docs/docs_translations/.doctrees/plugins/tag_manager.doctree deleted file mode 100644 index d6af80e3..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/tag_manager.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/twilio.doctree b/docs/docs_translations/.doctrees/plugins/twilio.doctree deleted file mode 100644 index 527b32ee..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/twilio.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/twitter.doctree b/docs/docs_translations/.doctrees/plugins/twitter.doctree deleted file mode 100644 index 8540ca04..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/twitter.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/vtiger.doctree b/docs/docs_translations/.doctrees/plugins/vtiger.doctree deleted file mode 100644 index 849b93b9..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/vtiger.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/zapier.doctree b/docs/docs_translations/.doctrees/plugins/zapier.doctree deleted file mode 100644 index 1df97880..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/zapier.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/plugins/zoho_crm.doctree b/docs/docs_translations/.doctrees/plugins/zoho_crm.doctree deleted file mode 100644 index 00a65dd8..00000000 Binary files a/docs/docs_translations/.doctrees/plugins/zoho_crm.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/points/points.doctree b/docs/docs_translations/.doctrees/points/points.doctree deleted file mode 100644 index a2db10b6..00000000 Binary files a/docs/docs_translations/.doctrees/points/points.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/points/points_troubleshooting.doctree b/docs/docs_translations/.doctrees/points/points_troubleshooting.doctree deleted file mode 100644 index c85a59ea..00000000 Binary files a/docs/docs_translations/.doctrees/points/points_troubleshooting.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/queue/message_queue.doctree b/docs/docs_translations/.doctrees/queue/message_queue.doctree deleted file mode 100644 index 70a37ff7..00000000 Binary files a/docs/docs_translations/.doctrees/queue/message_queue.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/queue/queue.doctree b/docs/docs_translations/.doctrees/queue/queue.doctree deleted file mode 100644 index e992f481..00000000 Binary files a/docs/docs_translations/.doctrees/queue/queue.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/reports/reports.doctree b/docs/docs_translations/.doctrees/reports/reports.doctree deleted file mode 100644 index a8bdca30..00000000 Binary files a/docs/docs_translations/.doctrees/reports/reports.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/search/search_operators.doctree b/docs/docs_translations/.doctrees/search/search_operators.doctree deleted file mode 100644 index d48305c6..00000000 Binary files a/docs/docs_translations/.doctrees/search/search_operators.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/segments/manage_segments.doctree b/docs/docs_translations/.doctrees/segments/manage_segments.doctree deleted file mode 100644 index 3618aa85..00000000 Binary files a/docs/docs_translations/.doctrees/segments/manage_segments.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/stages/stages.doctree b/docs/docs_translations/.doctrees/stages/stages.doctree deleted file mode 100644 index daa521f7..00000000 Binary files a/docs/docs_translations/.doctrees/stages/stages.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/themes/code_mode.doctree b/docs/docs_translations/.doctrees/themes/code_mode.doctree deleted file mode 100644 index a17dc828..00000000 Binary files a/docs/docs_translations/.doctrees/themes/code_mode.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/themes/customizing_themes.doctree b/docs/docs_translations/.doctrees/themes/customizing_themes.doctree deleted file mode 100644 index 6837ec38..00000000 Binary files a/docs/docs_translations/.doctrees/themes/customizing_themes.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/themes/manage_themes.doctree b/docs/docs_translations/.doctrees/themes/manage_themes.doctree deleted file mode 100644 index 6091f073..00000000 Binary files a/docs/docs_translations/.doctrees/themes/manage_themes.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/themes/theme_structure.doctree b/docs/docs_translations/.doctrees/themes/theme_structure.doctree deleted file mode 100644 index eee50ec9..00000000 Binary files a/docs/docs_translations/.doctrees/themes/theme_structure.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/translations/translations.doctree b/docs/docs_translations/.doctrees/translations/translations.doctree deleted file mode 100644 index 777a6fe6..00000000 Binary files a/docs/docs_translations/.doctrees/translations/translations.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/users_roles/managing_roles.doctree b/docs/docs_translations/.doctrees/users_roles/managing_roles.doctree deleted file mode 100644 index 6b635aa0..00000000 Binary files a/docs/docs_translations/.doctrees/users_roles/managing_roles.doctree and /dev/null differ diff --git a/docs/docs_translations/.doctrees/users_roles/managing_users.doctree b/docs/docs_translations/.doctrees/users_roles/managing_users.doctree deleted file mode 100644 index 505d7725..00000000 Binary files a/docs/docs_translations/.doctrees/users_roles/managing_users.doctree and /dev/null differ diff --git a/docs/docs_translations/authentication.pot b/docs/docs_translations/authentication.pot deleted file mode 100644 index 8b68f84e..00000000 --- a/docs/docs_translations/authentication.pot +++ /dev/null @@ -1,121 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../authentication/authentication.rst:2 -msgid "Authentication" -msgstr "" - -#: ../authentication/authentication.rst:4 -msgid "Mautic uses basic authentication for Users, however there is the ability to integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../authentication/authentication.rst:9 -msgid "SAML Single Sign On" -msgstr "" - -#: ../authentication/authentication.rst:13 -msgid "SAML is a single sign on protocol that allows single sign on and User creation in Mautic using a third party User source called an identity provider (IDP)." -msgstr "" - -#: ../authentication/authentication.rst:16 -msgid "Turning on SAML" -msgstr "" - -#: ../authentication/authentication.rst:17 -msgid "To turn on SAML support in Mautic, you first need the IDP's metadata XML which they provide. If it's a URL, browse to the URL then save the content into an XML file." -msgstr "" - -#: ../authentication/authentication.rst:19 -msgid "Click the settings wheel in the top right corner to open the **Settings** menu." -msgstr "" - -#: ../authentication/authentication.rst:21 -msgid "Navigate to **Configuration** > **User/Authentication** Settings." -msgstr "" - -#: ../authentication/authentication.rst:None -msgid "Screenshot of SAML SSO Settings" -msgstr "" - -#: ../authentication/authentication.rst:27 -msgid "Upload this file as the Identity Provider Metadata file." -msgstr "" - -#: ../authentication/authentication.rst:29 -msgid "It's recommended to create a non-Admin Role as the default Role for created Users. Select this Role in the '**Default Role for created Users**' dropdown. For more information, see :doc:`Users and Roles`." -msgstr "" - -#: ../authentication/authentication.rst:None -msgid "Screenshot of the User Role Permission" -msgstr "" - -#: ../authentication/authentication.rst:36 -msgid "Configuring the IDP" -msgstr "" - -#: ../authentication/authentication.rst:37 -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../authentication/authentication.rst:39 -msgid "Entity ID - this is site URL, displayed at the top of User/Authentication Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../authentication/authentication.rst:41 -msgid "Service Provider Metadata - if the provider requires a URL, use ``https://example.com/saml/metadata.xml``. To use as a file rather than a URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../authentication/authentication.rst:43 -msgid "Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../authentication/authentication.rst:45 -msgid "Issuer - this should come from the IDP but is often configurable. If it's a URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of it." -msgstr "" - -#: ../authentication/authentication.rst:47 -msgid "Verify request signatures or a SSL certificate - If the IDP supports encrypting and validating request signatures from Mautic to the IDP, generate a self signed SSL certificate. Upload the certificate and private key through Mautic's Configuration > User/Authentication Settings under the 'Use a custom X.509 certificate and private key to secure communication between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../authentication/authentication.rst:49 -msgid "Custom attributes - Mautic requires three custom attributes in the IDP responses for the User Email, first name and last name. Username is also supported but is optional. Configure the attribute names used by the IDP in Mautic's Configuration > User/Authentication Settings under the 'Enter the names of the attributes the configured IDP uses for the following Mautic User fields' section." -msgstr "" - -#: ../authentication/authentication.rst:52 -msgid "Logging in" -msgstr "" - -#: ../authentication/authentication.rst:54 -msgid "Once configured with the IDP and the IDP with Mautic, Mautic redirects all logins to the IDP's login. ``/s/login`` is still available for direct logins but you have to access it directly." -msgstr "" - -#: ../authentication/authentication.rst:56 -msgid "Login to the IDP, which then redirects you back to Mautic. If the exchange is successful Mautic creates a User if it doesn't already exist, and logs the User into the system." -msgstr "" - -#: ../authentication/authentication.rst:59 -msgid "Turning off SAML" -msgstr "" - -#: ../authentication/authentication.rst:61 -msgid "To turn off SAML, click the Remove link to the right of the Identity provider metadata file label." -msgstr "" - -#: ../authentication/authentication.rst:None -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/docs_translations/builders.pot b/docs/docs_translations/builders.pot deleted file mode 100644 index 741d5eff..00000000 --- a/docs/docs_translations/builders.pot +++ /dev/null @@ -1,245 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../builders/creating_themes.rst:4 -msgid "Creating Themes" -msgstr "" - -#: ../builders/email_landing_page.rst:4 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../builders/email_landing_page.rst:8 -msgid "Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern Builder for creating Emails and Landing Pages. In :xref:`Mautic 4` it's the default Builder." -msgstr "" - -#: ../builders/email_landing_page.rst:13 -msgid "To use your existing templates with the new Builder, you need to add one line to your configuration file. Read on for further details." -msgstr "" - -#: ../builders/email_landing_page.rst:18 -msgid "About GrapesJS" -msgstr "" - -#: ../builders/email_landing_page.rst:22 -msgid ":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After developing and improving it using the open source :xref:`GrapesJS` framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../builders/email_landing_page.rst:24 -msgid "GrapesJS is an open source, multi-purpose, Web Builder Framework which combines different tools and features with the goal to help build HTML templates without any knowledge of coding." -msgstr "" - -#: ../builders/email_landing_page.rst:29 -msgid "Available end-user features" -msgstr "" - -#: ../builders/email_landing_page.rst:32 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../builders/email_landing_page.rst:36 -msgid "GrapesJS comes with a set of built-in blocks, in this way you're able to build your templates faster. If the default set isn't enough you can always add your own custom blocks." -msgstr "" - -#: ../builders/email_landing_page.rst:39 -msgid "Limitless styling" -msgstr "" - -#: ../builders/email_landing_page.rst:41 -msgid "GrapesJS implements a simple and powerful Style Manager module which enables independent styling of any Component inside the canvas. It's also possible to configure it to use any of the CSS properties." -msgstr "" - -#: ../builders/email_landing_page.rst:44 -msgid "Responsive design" -msgstr "" - -#: ../builders/email_landing_page.rst:46 -msgid "GrapesJS gives you all the necessary tools you need to optimize your templates to look awesomely on any device. In this way you're able to provide various viewing experiences. In case you require more device options, you can easily add them to the editor." -msgstr "" - -#: ../builders/email_landing_page.rst:49 -msgid "The structure always under control" -msgstr "" - -#: ../builders/email_landing_page.rst:51 -msgid "You can nest Components as much as you can but when the structure begins to grow the Layer Manager comes very handy. It allows you to manage and rearrange your elements extremely fast, focusing always on the architecture of your structure." -msgstr "" - -#: ../builders/email_landing_page.rst:54 -msgid "The code is there when you need it" -msgstr "" - -#: ../builders/email_landing_page.rst:56 -msgid "You don't have to care about the code, but it's always there, available for you. When it's done, you can grab it and use it wherever you want. Developers could also implement their own storage interfaces to use inside the editor." -msgstr "" - -#: ../builders/email_landing_page.rst:59 -msgid "Asset manager" -msgstr "" - -#: ../builders/email_landing_page.rst:61 -msgid "With the Asset Manager is easier to organize your media files and it's enough to double click the image to change it." -msgstr "" - -#: ../builders/email_landing_page.rst:64 -msgid "About the builder" -msgstr "" - -#: ../builders/email_landing_page.rst:67 -msgid "Enabling the builder" -msgstr "" - -#: ../builders/email_landing_page.rst:69 -msgid "Since Mautic 3.3-RC1 the Builder is available to enable in the Plugins section of Mautic. Go to the Settings by clicking the cog wheel at the top right > Plugins > GrapesJS and click the GrapesJS icon. Change the slider to Yes." -msgstr "" - -#: ../builders/email_landing_page.rst:71 -msgid "Now you need to **clear your Mautic cache** located in ``var/cache`` and refresh the Landing Page before you can work with the new GrapesJS Builder. Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../builders/email_landing_page.rst:73 -msgid "By default, Mautic 4 activates the new Builder. Follow the previous steps to revert to the legacy Builder, remembering to clear the cache and reload the Landing Page." -msgstr "" - -#: ../builders/email_landing_page.rst:76 -msgid "Email builder overview" -msgstr "" - -#: ../builders/email_landing_page.rst:None -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../builders/email_landing_page.rst:82 -msgid "The functions of the Email Builder are as follows:" -msgstr "" - -#: ../builders/email_landing_page.rst:84 -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../builders/email_landing_page.rst:86 -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../builders/email_landing_page.rst:88 -msgid "Editor functions from left to right: display grids, Full screen view, export MJML / HTML code, Edit code, display customization options, display blocks, close editor." -msgstr "" - -#: ../builders/email_landing_page.rst:90 -msgid "Layout sections. These objects function as the basic structure of your design. Create your Email structure from sections, and pull in the different blocks you want to use." -msgstr "" - -#: ../builders/email_landing_page.rst:92 -msgid "Content blocks. You can populate your newsletter with these content blocks. Each block has specific layout, settings and design." -msgstr "" - -#: ../builders/email_landing_page.rst:95 -msgid "Templates" -msgstr "" - -#: ../builders/email_landing_page.rst:97 -msgid "To use your existing templates with the new Builder, you need to add one line to your configuration file in the template folder:" -msgstr "" - -#: ../builders/email_landing_page.rst:99 -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../builders/email_landing_page.rst:101 -msgid "If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../builders/email_landing_page.rst:103 -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../builders/email_landing_page.rst:107 -msgid "This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for multiple Builders - if you have been testing in the beta phase you need to update your configuration files to avoid a 500 error." -msgstr "" - -#: ../builders/email_landing_page.rst:109 -msgid "The blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../builders/email_landing_page.rst:121 -msgid "From the 3.3 General Availability release there are be three Email templates that support MJML." -msgstr "" - -#: ../builders/email_landing_page.rst:124 -msgid "Themes" -msgstr "" - -#: ../builders/email_landing_page.rst:126 -msgid "If you search through the list of available Themes, the new MJML Themes ``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new Builder." -msgstr "" - -#: ../builders/email_landing_page.rst:128 -msgid "To learn more about creating Themes please :doc:`check the documentation`." -msgstr "" - -#: ../builders/email_landing_page.rst:131 -msgid "Reporting bugs" -msgstr "" - -#: ../builders/email_landing_page.rst:134 -msgid "Known bugs / issues" -msgstr "" - -#: ../builders/email_landing_page.rst:136 -msgid "Please use the issue queue on the :xref:`GitHub repository` to find the latest updates and Report bugs with the Plugin. Be sure to search first in case someone has already reported the bug." -msgstr "" - -#: ../builders/email_landing_page.rst:139 -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../builders/email_landing_page.rst:141 -msgid "In case you aren't happy with the Plugin at the moment, you can easily switch back to the legacy Builder (original Mautic Builder). You can do so very quickly:" -msgstr "" - -#: ../builders/email_landing_page.rst:143 -msgid "Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../builders/email_landing_page.rst:145 -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../builders/email_landing_page.rst:147 -msgid "Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and Close\"" -msgstr "" - -#: ../builders/email_landing_page.rst:149 -msgid "Clear the cache and reload the Landing Page - you may also need to clear your browser cache." -msgstr "" - -#: ../builders/email_landing_page.rst:151 -msgid "After unloading GrapesJs Plugin, the legacy Builder becomes active again." -msgstr "" - -#: ../builders/email_landing_page.rst:154 -msgid "Thanks and credits" -msgstr "" - -#: ../builders/email_landing_page.rst:158 -msgid "Thank you to everyone who contributed to this project. Special thanks to Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the project, to :xref:`Webmecanik` for initializing this amazing new builder and to Joey from :xref:`Friendly Automate` for donating three Email Themes to the Community. Additional contributions: Alex Hammerschmied from :xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../builders/email_landing_page.rst:162 -msgid "And of course a really big thank you to all the contributors who have helped to bring this project to this point." -msgstr "" diff --git a/docs/docs_translations/campaigns.pot b/docs/docs_translations/campaigns.pot deleted file mode 100644 index 0fe05545..00000000 --- a/docs/docs_translations/campaigns.pot +++ /dev/null @@ -1,837 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../campaigns/campaign_builder.rst:4 -msgid "Using the Campaign Builder" -msgstr "" - -#: ../campaigns/campaign_builder.rst:8 -msgid "The Campaign Builder provides a blank canvas on which you can build your Campaign workflow. The Campaign Builder allows the use of conditions, decisions, and actions. It enables you to create a simple workflow by dragging and dropping various decisions, actions, and conditions onto a canvas." -msgstr "" - -#: ../campaigns/campaign_builder.rst:10 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../campaigns/campaign_builder.rst:12 -msgid "Click **Launch the Campaign Builder** on the New Campaigns wizard. The Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../campaigns/campaign_builder.rst:None -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../campaigns/campaign_builder.rst:18 -msgid "In this step, you specify the Contacts to include in your Campaign. It's possible to trigger a Campaign when Contacts join a Segment, submit a Form, or a combination of the two." -msgstr "" - -#: ../campaigns/campaign_builder.rst:20 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../campaigns/campaign_builder.rst:22 -msgid "**Contact Segments**: choose this option if you want to send your Campaign to a specific group of your Contacts that share certain attributes, for example, 'Located in the United States' or 'Visited Product A' and are in an existing Segment based on this criteria." -msgstr "" - -#: ../campaigns/campaign_builder.rst:24 -msgid "Note that the Segment selection shows public Segments only. If you create a Segment marked as private, that Segment won't be available for use in Campaigns." -msgstr "" - -#: ../campaigns/campaign_builder.rst:26 -msgid "**Contact Forms**: choose this option if you want to start the Campaign when the Contact completes a specified Form. Forms are the primary point of gathering information about a Contact. It's possible to take action in a Campaign based on the Form field values submitted." -msgstr "" - -#: ../campaigns/campaign_builder.rst:28 -msgid "You can select a mix of both types of Contact sources for your Campaign. To use both, click the grey selector button on either the left or right side of the **Contact source** box to add whichever source type you didn't originally select." -msgstr "" - -#: ../campaigns/campaign_builder.rst:0 -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../campaigns/campaign_builder.rst:34 -msgid "After selecting one or more Contact sources, click the grey selector button to add at least one event to your Campaign. A Campaign event comprises of a combination of actions, decisions, and/or conditions as shown in the following image:" -msgstr "" - -#: ../campaigns/campaign_builder.rst:None -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../campaigns/campaign_builder.rst:40 -msgid "For more information about Campaign Actions, Decisions, and Conditions, see the following topics." -msgstr "" - -#: ../campaigns/campaign_builder.rst:43 -msgid "Actions" -msgstr "" - -#: ../campaigns/campaign_builder.rst:44 -msgid "Campaign actions are events that you initiate on your Contacts or Contact records. These can represent sending communications to the Contact or may automate operational tasks to keep your marketing running. A single Campaign can include more than one action. When you create a Campaign, you select one of these actions to begin the workflow." -msgstr "" - -#: ../campaigns/campaign_builder.rst:46 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../campaigns/campaign_builder.rst:48 -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../campaigns/campaign_builder.rst:52 -msgid "Action" -msgstr "" - -#: ../campaigns/campaign_builder.rst:53 -#: ../campaigns/campaign_builder.rst:150 -#: ../campaigns/campaign_builder.rst:172 -#: ../campaigns/campaign_builder.rst:195 -msgid "Description" -msgstr "" - -#: ../campaigns/campaign_builder.rst:54 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:55 -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../campaigns/campaign_builder.rst:56 -msgid "**Add to Company's score**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:57 -msgid "Adds or subtracts a designated number of Points to or from the score for all Companies associated with the Contact." -msgstr "" - -#: ../campaigns/campaign_builder.rst:58 -msgid "**Add Company action**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:59 -msgid "Associates a Contact with a Company and sets the Company as the primary Company for the Contact." -msgstr "" - -#: ../campaigns/campaign_builder.rst:60 -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:61 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../campaigns/campaign_builder.rst:62 -msgid "**Change Campaigns**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:63 -msgid "Removes a Contact from the existing Campaign, moves them into another Campaign, restarts the current Campaign or a combination of these. You must remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../campaigns/campaign_builder.rst:64 -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:65 -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../campaigns/campaign_builder.rst:66 -msgid "**Delete Contact**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:67 -msgid "Permanently deletes the Contact record along with all the information about that Contact, including the Campaign event log record about that Contact. See the :doc:`Segment docs` about how to use this action to delete all Contacts in a Segment." -msgstr "" - -#: ../campaigns/campaign_builder.rst:68 -msgid "**Jump to Event**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:69 -msgid "Moves Contacts from one point in a Campaign to another without rebuilding events. Use this action to send the Contact to a different path in the Campaign." -msgstr "" - -#: ../campaigns/campaign_builder.rst:70 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:71 -msgid "Adds or removes Contacts to/from Segments. When removing a Contact from a dynamic - filter-based - Segment via a Campaign action, they won't be re-added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../campaigns/campaign_builder.rst:72 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:73 -msgid "Overwrites or appends Tags on a Contact record. You can add or remove Tags, or do both, in the same action." -msgstr "" - -#: ../campaigns/campaign_builder.rst:74 -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:75 -msgid "Sends the Contact record to the selected Integration, either creating a new Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../campaigns/campaign_builder.rst:76 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:77 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../campaigns/campaign_builder.rst:78 -msgid "**Send a Webhook**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:79 -msgid "Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE methods. Headers and data is customizable, and support the use of tokens, such as Contact fields and the Contact's IP address. For example, ``{contactfield=firstname}``" -msgstr "" - -#: ../campaigns/campaign_builder.rst:80 -msgid "**Send Email**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:81 -msgid "Sends a transaction or marketing Email to the selected Contact. You can send a transactional Email to the Contact multiple times. You can only send a marketing Email to the Contact once across multiple sources. If the Contact has already received this Email from another source or the current Campaign, they aren't sent the Email again and the Contact progresses through the Campaign." -msgstr "" - -#: ../campaigns/campaign_builder.rst:82 -msgid "**Send Email to User**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:83 -msgid "Sends an Email to an entity other than the Contact. This may be a Mautic User, the Contact's owner, or non-Users. Emails sent using this action don't generate any statistics for Contacts or Emails." -msgstr "" - -#: ../campaigns/campaign_builder.rst:84 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:85 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../campaigns/campaign_builder.rst:86 -msgid "**Update Contact**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:87 -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../campaigns/campaign_builder.rst:88 -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:89 -msgid "Updates the existing Contact's primary Company fields with the specified value. See :doc:`documentation on Companies `." -msgstr "" - -#: ../campaigns/campaign_builder.rst:90 -msgid "**Update Contact owner**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:91 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../campaigns/campaign_builder.rst:96 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../campaigns/campaign_builder.rst:101 -msgid "As the first step of your Campaign, you typically send out an Email to your Segments. When you add an Email to a Campaign, you can select a potential **delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../campaigns/campaign_builder.rst:None -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../campaigns/campaign_builder.rst:107 -msgid "When attaching an Action to a decision's **non-action** initiated decision path, the delay becomes how long the Contact has to take action before the Campaign progresses down the non-action path. Image showing delayed actions on a non-action decision path in a Campaign." -msgstr "" - -#: ../campaigns/campaign_builder.rst:109 -msgid "The Delete Contact action also deletes the Campaign event log record about that Contact. Therefore, though this action might always display 0% progress on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../campaigns/campaign_builder.rst:112 -msgid "The Delete Contact action doesn't allow connection with other Campaign events. Since the Contact won't exist after triggering this action, Campaign events can't exist after this point." -msgstr "" - -#: ../campaigns/campaign_builder.rst:114 -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../campaigns/campaign_builder.rst:117 -msgid "Decisions" -msgstr "" - -#: ../campaigns/campaign_builder.rst:119 -msgid "Campaign Decisions are actions that your Contacts initiate. Downloading an Asset, opening an Email, or visiting a Landing Page are examples of Decisions. These Decisions can be either directly initiated or implied based on non-action. The options for Decisions change based on the Campaign Actions that you select." -msgstr "" - -#: ../campaigns/campaign_builder.rst:121 -msgid "A decision usually has two paths denoted by the red and green icons on the decision tree." -msgstr "" - -#: ../campaigns/campaign_builder.rst:124 -msgid "Green paths" -msgstr "" - -#: ../campaigns/campaign_builder.rst:126 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../campaigns/campaign_builder.rst:128 -msgid "A Contact takes this path if the Contact has made a direct action such as opening an Email or submitting a Form. Execution of Actions that follow the green paths happen immediately - or scheduled immediately in the case of a delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../campaigns/campaign_builder.rst:131 -msgid "Red paths" -msgstr "" - -#: ../campaigns/campaign_builder.rst:133 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../campaigns/campaign_builder.rst:135 -msgid "A Contact takes this path if a Contact hasn't taken the action. Use an action's delay settings to define at what point the Campaign should send the Contact to the following steps on this path." -msgstr "" - -#: ../campaigns/campaign_builder.rst:137 -msgid "Depending on meeting - or not meeting - the criteria for the decision, the Contact takes either the green or the red paths in the decision tree. For example, consider an instance where the decision is to visit a Landing Page. There can be two outcomes. If the Contact chooses to visit the Landing Page, then the green decision path connects to the next action in the Campaign workflow. If, however, the Contact doesn't visit the Landing Page, then the red decision path connects to a different action - for example a delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../campaigns/campaign_builder.rst:None -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../campaigns/campaign_builder.rst:143 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../campaigns/campaign_builder.rst:145 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../campaigns/campaign_builder.rst:149 -#: ../campaigns/campaign_builder.rst:171 -msgid "Decision" -msgstr "" - -#: ../campaigns/campaign_builder.rst:151 -msgid "**Device visit**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:152 -msgid "Set the options to track whether your Contact visits your resources from a specific device type, brand, or operating system." -msgstr "" - -#: ../campaigns/campaign_builder.rst:153 -msgid "**Downloads Asset**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:154 -msgid "Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../campaigns/campaign_builder.rst:155 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:156 -msgid "Set options to push Campaign-based Dynamic Content if you have a webpage or Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../campaigns/campaign_builder.rst:157 -msgid "**Submits Form**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:158 -msgid "Set options to track whether the Contact has submitted any Mautic Forms. You can also limit this decision to track specific Forms." -msgstr "" - -#: ../campaigns/campaign_builder.rst:159 -msgid "**Visits a page**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:160 -msgid "Specify one or multiple pages you want the Contact to visit. Can be Mautic Landing Pages or pages on your website." -msgstr "" - -#: ../campaigns/campaign_builder.rst:161 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:162 -msgid "Some decisions in the Campaign Builder are available for use only if you select the Send Email Campaign action." -msgstr "" - -#: ../campaigns/campaign_builder.rst:165 -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../campaigns/campaign_builder.rst:167 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../campaigns/campaign_builder.rst:173 -msgid "**Opens Email**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:174 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../campaigns/campaign_builder.rst:175 -msgid "**Clicks Email**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:176 -msgid "Tracks whether the Contact clicks a link within the sent Email. This infers that the Contact opened the Email." -msgstr "" - -#: ../campaigns/campaign_builder.rst:177 -msgid "**Replies to Email**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:178 -msgid "Tracks if a Contact has replied to an Email that you sent. For more information, see Contact replies." -msgstr "" - -#: ../campaigns/campaign_builder.rst:182 -msgid "Conditions" -msgstr "" - -#: ../campaigns/campaign_builder.rst:184 -msgid "Campaign conditions execute different actions based on a Contact's data. For example, to execute an action if a Contact has a valid Email address or do something else if they don't." -msgstr "" - -#: ../campaigns/campaign_builder.rst:186 -msgid "A condition has two paths, denoted by red and green icons as explained in the previous section." -msgstr "" - -#: ../campaigns/campaign_builder.rst:188 -msgid "Here are the different conditions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../campaigns/campaign_builder.rst:190 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../campaigns/campaign_builder.rst:194 -msgid "Condition" -msgstr "" - -#: ../campaigns/campaign_builder.rst:196 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:197 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../campaigns/campaign_builder.rst:198 -msgid "**Contact device**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:199 -msgid "Checks if the Contact has interacted with your Campaign from a specific device type, brand, or OS." -msgstr "" - -#: ../campaigns/campaign_builder.rst:200 -msgid "**Contact field value**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:201 -msgid "Checks if the information matches the selected criteria on the Contact record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../campaigns/campaign_builder.rst:202 -msgid "**Contact owner**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:203 -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../campaigns/campaign_builder.rst:204 -msgid "**Contact Segments**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:205 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../campaigns/campaign_builder.rst:206 -msgid "**Contact Tags**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:207 -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../campaigns/campaign_builder.rst:208 -msgid "**Form field value**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:209 -msgid "Checks if values submitted for a selected field on a selected Form matches specified criteria." -msgstr "" - -#: ../campaigns/campaign_builder.rst:210 -msgid "**Has active notification**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:211 -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../campaigns/campaign_builder.rst:212 -msgid "**Has valid Email address**" -msgstr "" - -#: ../campaigns/campaign_builder.rst:213 -msgid "Checks if the Contact's Email address has a valid syntax, for example name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../campaigns/campaign_builder.rst:216 -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../campaigns/campaign_builder.rst:217 -msgid "Mautic respects delays set on the condition itself before passing down to a delay on any connected action. For example, if you are coming from a negative path on 'Opens Email', you can set a condition of 'has active notification' with a relative date of 1 day, followed by 'Send Email' on the negative path with a relative date of 2 days. Mautic checks after 1 day if there is an active notification and if there isn't, schedules the Email for two days later." -msgstr "" - -#: ../campaigns/campaign_builder.rst:220 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../campaigns/campaign_builder.rst:221 -msgid "In the condition based on a Contact field value, select the required date field. Then select date as the operator and select the required value from the drop-down list." -msgstr "" - -#: ../campaigns/campaign_builder.rst:223 -msgid "In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../campaigns/campaign_builder.rst:225 -msgid "Mautic evaluates Campaign conditions immediately, therefore if the date in the field matches the condition, Mautic executes then the positive action. If the date doesn't match, Mautic executes the negative action. The Contact doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../campaigns/campaign_builder.rst:227 -msgid "In order to run Campaigns based on a particular date where a Contact may or may not be \"included\" today:" -msgstr "" - -#: ../campaigns/campaign_builder.rst:229 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../campaigns/campaign_builder.rst:230 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../campaigns/campaign_builder.rst:231 -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../campaigns/campaign_builder.rst:232 -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../campaigns/campaign_builder.rst:234 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../campaigns/campaign_builder.rst:236 -msgid "If a Contact appears again at a later date in that Segment because the value of the date has changed, then the Contact passes through the Campaign only once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../campaigns/campaign_builder.rst:241 -msgid "Triggering Campaign events" -msgstr "" - -#: ../campaigns/campaign_builder.rst:245 -msgid "Actions and Decisions in Mautic require a :doc:`cron job` which executes the following command at the desired interval:" -msgstr "" - -#: ../campaigns/campaign_builder.rst:251 -msgid "If you want to execute the command at different intervals for specific Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" - -#: ../campaigns/campaigns_overview.rst:2 -msgid "Campaigns overview" -msgstr "" - -#: ../campaigns/campaigns_overview.rst:4 -msgid "A Campaign is a marketing activity that aligns Components and the Channels through which you can publish your content in a coordinated, strategically timed approach to meet specific business objectives. After you add your Contacts and set up the required Channels, you can create Campaigns to build meaningful relationships with your Contacts." -msgstr "" - -#: ../campaigns/campaigns_overview.rst:6 -msgid "Campaigns are useful for Contact management, marketing operations, and sales workflows. A Campaign can send tailored messages to all Contacts in the Segment, or a subset of Contacts that you specify. You can set the Campaign schedule to send the message once or at a recurring interval, such as once a week." -msgstr "" - -#: ../campaigns/campaigns_overview.rst:8 -msgid "One of the main benefits of the Campaign workflow process is the ability to predefine these workflows and have them respond automatically to your Contacts and timelines. This automation minimizes the amount of time required for manual Contact activity and improves reliability of Contact nurturing." -msgstr "" - -#: ../campaigns/campaigns_overview.rst:11 -msgid "Campaign types" -msgstr "" - -#: ../campaigns/campaigns_overview.rst:13 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../campaigns/campaigns_overview.rst:18 -msgid "Time driven Campaigns" -msgstr "" - -#: ../campaigns/campaigns_overview.rst:22 -msgid "Time driven Campaigns are the type of Campaigns that center around specific timed events. These events can be anything, but are usually Emails. For instance, you can choose to trigger such Email events after a delay of a predefined number of days or on a specific date in the future." -msgstr "" - -#: ../campaigns/campaigns_overview.rst:27 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../campaigns/campaigns_overview.rst:31 -msgid "Contact driven Campaigns can trigger events based on interactions with specific Contacts. These interactions can occur as a result of the Contact landing on a certain webpage or Landing Page, opening an Email, spending a specified amount of time on a website, or any other activities. Such Campaigns can respond to these actions typically by sending an Email to the Contact either immediately or at a specific time in future." -msgstr "" - -#: ../campaigns/campaigns_overview.rst:37 -msgid "Mixed Campaigns" -msgstr "" - -#: ../campaigns/campaigns_overview.rst:41 -msgid "Mautic allows you to create Campaigns which consist a mix of both time driven Campaigns as well as Contact driven actions. This powerful mixed Campaign strategy drives actions by both specific dates or after specific time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../campaigns/campaigns_overview.rst:44 -msgid "Campaigns can trigger a variety of actions. Email actions mentioned in the preceding Campaign types are one example. The other actions that a Campaign can trigger include automatic assignment to a new Segment, assigning a new Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:4 -msgid "Creating Campaigns" -msgstr "" - -#: ../campaigns/creating_campaigns.rst:8 -msgid "Creating Campaigns is a central part of the marketing automation process. When you create a new Campaign, you perform the basic administrative tasks such as choosing a name for the Campaign, creating a description, assigning a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:10 -msgid "At the heart of any marketing automation Campaign is the Campaign Builder. This allows you to specify how Contacts enter the Campaign, and what happens at every point after they enter the workflow." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:12 -msgid "After establishing the basics, the Campaign Builder handles the finer details of building a Campaign workflow using Conditions, Decisions, and Actions." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:15 -msgid "Prerequisites" -msgstr "" - -#: ../campaigns/creating_campaigns.rst:17 -msgid "Before you start creating Campaigns, you must ensure that you have the following set up:" -msgstr "" - -#: ../campaigns/creating_campaigns.rst:20 -msgid "Create a Contact Segment or a Form to initialize your Campaign. If you already have an existing Segment or Form to use, ensure that they're up-to-date." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:22 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:23 -msgid "Set up and configure any Integration that you intend to use in your Campaign." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:24 -msgid "Set up appropriate Channels such as Text Messages, Email, Focus items to communicate with your Contacts." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:25 -msgid "Create Assets, Landing pages, or other Components that you want to use for your Campaign. If using Assets, ensure that you upload them before creating your Campaign." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:27 -msgid "Although you can set up Channels and create Components during the process of creating the Campaign, it's ideal to have them ready beforehand as it makes the Campaign building process faster and more efficient." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:32 -msgid "Create your first Campaign" -msgstr "" - -#: ../campaigns/creating_campaigns.rst:36 -msgid "After you have the prerequisites in place, you are ready to create your first Campaign." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:39 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../campaigns/creating_campaigns.rst:41 -msgid "Launch your Mautic instance." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:42 -msgid "Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:43 -msgid "Click **New** on the Campaigns page. The New Campaign wizard appears as shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../campaigns/creating_campaigns.rst:None -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../campaigns/creating_campaigns.rst:49 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:50 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../campaigns/creating_campaigns.rst:52 -msgid "**Category** - Choose a Category to assign your Campaign to. Categories help you organize your Campaigns. To learn more about creating and managing Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:53 -msgid "**Allow Contacts to restart the Campaign** - Click the toggle switch to allow Contacts to restart the Campaign if you're building a Campaign for a recurring message - for example birthdays, subscriptions - or transactional operations - for example activity notifications, updating data. Enabling this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:54 -msgid "**Published** - Click the toggle switch to publish or un-publish the Campaign. Ensure that you don't publish a Campaign until you're actually ready for it to go live. You can also schedule to publish or un-publish a Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:56 -msgid "Click **Launch Campaign Builder** to start building your Campaign, and add at least one event. For information about how to use the Campaign Builder, see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:59 -msgid "After adding events to your Campaign, close the Campaign Builder and click **Save & Close** to save your changes." -msgstr "" - -#: ../campaigns/creating_campaigns.rst:63 -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../campaigns/creating_campaigns.rst:65 -msgid "After creating your Campaign, you can add or remove Contacts in batch for Campaigns using the following command:" -msgstr "" - -#: ../campaigns/creating_campaigns.rst:72 -msgid "See documentation on :doc:`/configuration/cron_jobs` for further details." -msgstr "" - -#: ../campaigns/managing_campaigns.rst:4 -msgid "Managing Campaigns" -msgstr "" - -#: ../campaigns/managing_campaigns.rst:8 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../campaigns/managing_campaigns.rst:10 -msgid "Click any Campaign name on the Campaigns list to take you to the Campaign overview. Each tab displays details of your Campaign, including the number of Contacts added to the Campaign, the number of Emails sent, the number of page views resulting from the Campaign, and more." -msgstr "" - -#: ../campaigns/managing_campaigns.rst:12 -msgid "Additional information includes a quick overview of what decisions and actions are available in the Campaign, as well as a grid layout overview of all the Contacts in the Campaign." -msgstr "" - -#: ../campaigns/managing_campaigns.rst:14 -msgid "The following image shows a sample Campaign overview with its highlighted panels:" -msgstr "" - -#: ../campaigns/managing_campaigns.rst:None -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../campaigns/managing_campaigns.rst:20 -msgid "The **Details** drop-down menu gives a quick overview of the most important information about your Campaign. This information includes the name of the User who created the Campaign, Category of the Campaign, creation date and time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../campaigns/managing_campaigns.rst:22 -msgid "The **Campaign Statistics** panel shows the number of Contacts added to the Campaign over the specified period of time in graphical format. To specify the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../campaigns/managing_campaigns.rst:24 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../campaigns/managing_campaigns.rst:26 -msgid "The **Decisions** tab displays a tabular list of all the decisions that you have added to your Campaign." -msgstr "" - -#: ../campaigns/managing_campaigns.rst:28 -msgid "The **Actions** tab displays a tabular list of all the actions that you have added to your Campaign." -msgstr "" - -#: ../campaigns/managing_campaigns.rst:30 -msgid "The **Conditions** tab displays a tabular list of all he conditions that you have added to your Campaign." -msgstr "" - -#: ../campaigns/managing_campaigns.rst:32 -msgid "The **Contacts** tab displays a grid view of all the Contacts that you have added to your Campaign." -msgstr "" - -#: ../campaigns/managing_campaigns.rst:34 -msgid "The **Recent Activity** panel on the right displays the recent activities that have taken place in the Campaign." -msgstr "" - -#: ../campaigns/troubleshooting_campaigns.rst:4 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../campaigns/troubleshooting_campaigns.rst:9 -msgid "Page visits aren't recognized" -msgstr "" - -#: ../campaigns/troubleshooting_campaigns.rst:11 -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../campaigns/troubleshooting_campaigns.rst:13 -msgid "Make sure that you aren't testing the Page visit while logged into Mautic. Mautic ignores activity from Mautic Administrators. So, it's suggested that you use an anonymous session, an incognito window, another browser, or log out of Mautic." -msgstr "" - -#: ../campaigns/troubleshooting_campaigns.rst:15 -msgid "Ensure that the Contact getting tracked is in the Campaign. The easy way to test this is to review the timeline of the Contact for the page hit / inclusion into the Campaign." -msgstr "" - -#: ../campaigns/troubleshooting_campaigns.rst:17 -msgid "Mautic executes Campaigns sequentially and won't repeat per Contact. If the Contact has already visited the Page while part of the Campaign and triggered the Visits a Page decision, then the Contact's subsequent visits won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../campaigns/troubleshooting_campaigns.rst:19 -msgid "Ensure that the URL in the Campaign action either matches exactly the URL visited, or use a wildcard. A URL can include the schema, host/domain, path, query parameters, and/or fragment. For example, if you have a URL of ``https://example.com`` and the page hit registers as ``https://example.com/index.php?foo=bar``, the Campaign decision won't trigger. However, if you use ``https://example.com*`` as the URL, it matches the rule and thus gets triggered." -msgstr "" - -#: ../campaigns/troubleshooting_campaigns.rst:21 -msgid "Another example is if you want to associate different page hits with specific Campaigns. For example, if you have Campaign A and Campaign B and you want to use the same base URL and path for both Campaigns but differentiate with a query parameter. For Campaign A, you can define a Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A Contact only triggers the specific Campaign desired. If the goal is to trigger both Campaigns regardless of the query parameters, use ``https://example.com/my-page*``." -msgstr "" diff --git a/docs/docs_translations/categories.pot b/docs/docs_translations/categories.pot deleted file mode 100644 index be60676f..00000000 --- a/docs/docs_translations/categories.pot +++ /dev/null @@ -1,65 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../categories/categories-overview.rst:4 -msgid "Categories" -msgstr "" - -#: ../categories/categories-overview.rst:8 -msgid "Categories are a way to organize Mautic elements. They're available for Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../categories/categories-overview.rst:10 -msgid "Create element-specific Categories for example only for Assets, Emails or Forms." -msgstr "" - -#: ../categories/categories-overview.rst:11 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../categories/categories-overview.rst:16 -msgid "Creating and managing Categories" -msgstr "" - -#: ../categories/categories-overview.rst:20 -msgid "To create new Categories, go to settings menu in the top right corner of Mautic. There choose Categories." -msgstr "" - -#: ../categories/categories-overview.rst:None -msgid "Screenshot of create new Category" -msgstr "" - -#: ../categories/categories-overview.rst:28 -msgid "When creating a new Category you can select type, title, description, alias, color and published status. The color will be helpful to quickly find Mautic elements by their appropriate Category when viewing things like the Calendar or other areas within Mautic." -msgstr "" - -#: ../categories/categories-overview.rst:31 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../categories/categories-overview.rst:35 -msgid "In addition to organizing various Mautic elements Categories can be used to organize Contacts. In Contact details use the Preference menu to open Contact Preference Center." -msgstr "" - -#: ../categories/categories-overview.rst:None -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../categories/categories-overview.rst:41 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/docs_translations/channels.pot b/docs/docs_translations/channels.pot deleted file mode 100644 index f09fd4ac..00000000 --- a/docs/docs_translations/channels.pot +++ /dev/null @@ -1,1959 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../channels/emails.rst:2 -msgid "Emails" -msgstr "" - -#: ../channels/emails.rst:4 -msgid "Mautic enables marketers to automatically send Emails directly to a group of Contacts in a Segment by using a Campaign, or send Emails on a one-time basis. Emails provide a means for direct interaction with potential customers, clients, and Contacts." -msgstr "" - -#: ../channels/emails.rst:7 -msgid "Email types" -msgstr "" - -#: ../channels/emails.rst:None -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../channels/emails.rst:13 -msgid "There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../channels/emails.rst:18 -msgid "Template Emails" -msgstr "" - -#: ../channels/emails.rst:22 -msgid "Template Emails are transactional by default. They're used in Campaigns, Form submit actions, Point triggers, etc. It's possible to send template Emails to the same Contact multiple times. You can't send template Emails to a Contact outside of another Mautic Component except when sending an Email directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../channels/emails.rst:25 -msgid "For this reason, template Emails sent directly to a Contact aren't associated with the template Email itself and thus stats aren't tracked against it." -msgstr "" - -#: ../channels/emails.rst:30 -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../channels/emails.rst:34 -msgid "Segment Emails are marketing Emails by default. On creation the marketer assigns Segments to the Email. This determines which Contacts receive the communication. Note that each Contact can only receive the Email once - it's like a mailing list." -msgstr "" - -#: ../channels/emails.rst:None -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../channels/emails.rst:40 -msgid "This entry field is a multi-select which allows you to choose several Segments if necessary." -msgstr "" - -#: ../channels/emails.rst:42 -msgid "Mautic initiates the sending of these Emails with a :doc:`/configuration/cron_jobs` - see section on Send Scheduled Broadcasts - for example, Segment Emails - for more details on this." -msgstr "" - -#: ../channels/emails.rst:45 -msgid "Email formats" -msgstr "" - -#: ../channels/emails.rst:47 -msgid "In Mautic, it's possible to create Emails in both full HTML as well as basic text format - delivered as necessary to Contacts based on what their client supports. This is an important part of creating a strong relationship with Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../channels/emails.rst:52 -msgid "Managing Emails" -msgstr "" - -#: ../channels/emails.rst:57 -msgid "Email overview" -msgstr "" - -#: ../channels/emails.rst:59 -msgid "The Email overview allows at-a-glance information regarding the success or failure of a particular Email. You can quickly see relevant information in regards to opens, bounces, successful click-throughs and other important statistics." -msgstr "" - -#: ../channels/emails.rst:62 -msgid "Translations" -msgstr "" - -#: ../channels/emails.rst:64 -msgid "When creating the Email, there is an option to assign a language and a translation parent. By selecting a translation parent, the current item is then considered to be a translation in the selected language of that parent item. If a Contact has a preferred language set, they receive the translated version in their preferred language if it exists. Otherwise, they receive the parent in the default language." -msgstr "" - -#: ../channels/emails.rst:66 -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../channels/emails.rst:69 -msgid "Base64 encoded images" -msgstr "" - -#: ../channels/emails.rst:71 -msgid "It's possible to encode all images in the Email text as base64. It attaches the image inside the Email body. It has several implications:" -msgstr "" - -#: ../channels/emails.rst:None -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../channels/emails.rst:77 -msgid "The main idea with this option is that most of the Email clients display the images directly, without the need to allow images." -msgstr "" - -#: ../channels/emails.rst:78 -msgid "Some Email clients like GMail require the approval to display Base64 encoded images due to the tracking pixel being an image, and won't display the Base64 encoded images as a result. See the next paragraph for possible solution." -msgstr "" - -#: ../channels/emails.rst:79 -msgid "The Email body increases significantly if the Email contains many and/or large sized images. Some Email clients like GMail \"clip\" such messages and won't display it directly." -msgstr "" - -#: ../channels/emails.rst:82 -msgid "Tokens" -msgstr "" - -#: ../channels/emails.rst:84 -msgid "Mautic allows the use of tokens in Emails which gives the marketer the possibility to integrate a number of Contact fields in your Emails. These can be easily placed within your Emails and are automatically replaced with the appropriate text once sent." -msgstr "" - -#: ../channels/emails.rst:86 -msgid "Check the :doc:`/configuration/variables` documentation for a list of all the available default fields." -msgstr "" - -#: ../channels/emails.rst:89 -msgid "Default value" -msgstr "" - -#: ../channels/emails.rst:91 -msgid "A token can have a default value for cases when the Contact doesn't have the value known. You must specify the default value after a ``|`` character, for example:" -msgstr "" - -#: ../channels/emails.rst:97 -msgid "The ``|friend`` tells Mautic to use 'friend' if there is no first name present in the Contact field." -msgstr "" - -#: ../channels/emails.rst:100 -msgid "Encoded value" -msgstr "" - -#: ../channels/emails.rst:102 -msgid "It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../channels/emails.rst:108 -msgid "The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../channels/emails.rst:111 -msgid "Date formats" -msgstr "" - -#: ../channels/emails.rst:113 -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../channels/emails.rst:121 -msgid "The date outputs in a human-readable format, configured in the settings in your Global Configuration > System Settings under 'Default format for date only' and 'Default time only format'." -msgstr "" - -#: ../channels/emails.rst:124 -msgid "Contact replies" -msgstr "" - -#: ../channels/emails.rst:126 -msgid "To make use of monitoring replies from Contacts, you must have access to an IMAP server **other than Google or Yahoo** as they overwrite the return path, which prevents this feature from working." -msgstr "" - -#: ../channels/emails.rst:129 -msgid "To use the Monitored Email feature you must have the PHP IMAP extension enabled - most hosts already have this turned on." -msgstr "" - -#: ../channels/emails.rst:131 -msgid "Configure all Mautic sender/reply Email addresses to send a copy to one single inbox - most Email providers support this feature in their configuration panel." -msgstr "" - -#: ../channels/emails.rst:134 -msgid "It's best to create an Email address specifically for this purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../channels/emails.rst:136 -msgid "Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../channels/emails.rst:None -#: ../channels/emails.rst:None -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../channels/emails.rst:142 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../channels/emails.rst:144 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../channels/emails.rst:147 -msgid "Usage" -msgstr "" - -#: ../channels/emails.rst:148 -msgid "Contact replies within Campaigns function as decision after an Email Send action, to take further action based on whether the Contact has replied to the Email. Mautic tries to read the inbox, parse messages, and find replies from the specified Contact. The Contact, when matched with an incoming reply, proceeds down the positive path immediately after the reply detection." -msgstr "" - -#: ../channels/emails.rst:None -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../channels/emails.rst:158 -msgid "Mailer as Owner" -msgstr "" - -#: ../channels/emails.rst:162 -msgid "This feature allows Mautic to automatically personalize Emails sent to a Contact who has an owner (Mautic User) assigned to them. This feature changes the from Email, from name and signature by changing the default setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../channels/emails.rst:167 -msgid "Sending from the Contact owner" -msgstr "" - -#: ../channels/emails.rst:171 -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../channels/emails.rst:172 -msgid "Select the Configuration menu item." -msgstr "" - -#: ../channels/emails.rst:173 -msgid "Select the Email Settings tab." -msgstr "" - -#: ../channels/emails.rst:174 -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../channels/emails.rst:175 -msgid "Save the configuration." -msgstr "" - -#: ../channels/emails.rst:178 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../channels/emails.rst:179 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../channels/emails.rst:181 -msgid "There is a switch under the advanced settings of the Email, which allows you to decide whether to take the global mailer as owner setting, or the specified from address, into account." -msgstr "" - -#: ../channels/emails.rst:None -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../channels/emails.rst:187 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../channels/emails.rst:189 -msgid "If set to No, Mautic uses the address and name supplied in the Email 'From' fields." -msgstr "" - -#: ../channels/emails.rst:192 -msgid "Signatures" -msgstr "" - -#: ../channels/emails.rst:194 -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../channels/emails.rst:196 -msgid "The default signature is in the Configuration > Email Settings tab. The default text is" -msgstr "" - -#: ../channels/emails.rst:202 -msgid "Mautic replaces the ``|FROM_NAME|`` token with the name which is also defined in the Email Settings tab." -msgstr "" - -#: ../channels/emails.rst:204 -msgid "Mautic uses this signature by default if the Contact doesn't have an owner assigned." -msgstr "" - -#: ../channels/emails.rst:206 -msgid "Every Mautic User can configure their own signature in their account settings. Mautic uses this signature by default if the Contact has an owner assigned to them." -msgstr "" - -#: ../channels/emails.rst:209 -msgid "There are some exceptions where the Contact owner's signature isn't used, which is when a User sends an Email directly from a Contact's profile. In this case, Mautic uses the currently logged in User's signature, with the from name and Email specified in the Email send Form, and not the Contact owner. The values used are pre-filled with those of the currently logged in Mautic User." -msgstr "" - -#: ../channels/emails.rst:211 -msgid "It doesn't matter if the Contact has another owner assigned or if it doesn't have an owner at all." -msgstr "" - -#: ../channels/emails.rst:213 -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../channels/emails.rst:219 -msgid "Using the Email signature" -msgstr "" - -#: ../channels/emails.rst:223 -msgid "Marketers can place the signature into an Email using the ``{signature}`` token." -msgstr "" - -#: ../channels/emails.rst:226 -msgid "Email delivery" -msgstr "" - -#: ../channels/emails.rst:228 -msgid "Mautic delivers Emails using the method defined by the system administrator. If you are the system administrator for your Company, then you need to add the Email protocol for your Mautic instance to use. Mautic integrates with any Email service provider which offers SMTP mail servers as well as several distinct services such as:" -msgstr "" - -#: ../channels/emails.rst:230 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../channels/emails.rst:231 -msgid ":xref:`GMail`" -msgstr "" - -#: ../channels/emails.rst:232 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../channels/emails.rst:233 -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../channels/emails.rst:234 -msgid ":xref:`Postmark`" -msgstr "" - -#: ../channels/emails.rst:235 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../channels/emails.rst:236 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../channels/emails.rst:238 -msgid "The system can either send Emails immediately or queue them for processing in batches by a :doc:`cron job `." -msgstr "" - -#: ../channels/emails.rst:241 -msgid "Immediate delivery" -msgstr "" - -#: ../channels/emails.rst:243 -msgid "This is the default means of delivery. As soon as an action in Mautic triggers an Email to send, it's sent immediately. If you expect to send a large number of Emails, you should use the queue. Sending Email immediately may slow the response time of Mautic if using a remote mail service, since Mautic has to establish a connection with that service before sending the mail. Also attempting to send large batches of Emails at once may hit your server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../channels/emails.rst:246 -msgid "Queued delivery" -msgstr "" - -#: ../channels/emails.rst:248 -msgid "Mautic works most effectively with high send volumes if you use the queued delivery method. Mautic stores the Email in the configured spool directory until the execution of the command to process the queue. Set up a :doc:`cron job ` at the desired interval to run the command:" -msgstr "" - -#: ../channels/emails.rst:254 -msgid "Some hosts may have limits on the number of Emails sent during a specified time frame and/or limit the execution time of a script. If that's the case for you, or if you just want to moderate batch processing, you can configure batch numbers and time limits in Mautic's Configuration. See the :doc:`cron job documentation ` for more specifics." -msgstr "" - -#: ../channels/emails.rst:259 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../channels/emails.rst:263 -msgid "Mautic automatically tags each Email with a tracking pixel image. This allows Mautic to track when a Contact opens the Email and execute actions accordingly. Note that there are limitations to this technology - the Contact's Email client supporting HTML and auto-loading of images, and not blocking the loading of pixels. If the Email client doesn't load the image, there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../channels/emails.rst:265 -msgid "By default, Mautic adds the tracking pixel image at the end of the message, just before the ```` tag. If needed, one could use the ``{tracking_pixel}`` variable within the body content token to have it placed elsewhere. Beware that you shouldn't insert this directly after the opening ```` because this prevents correct display of pre-header text on some Email clients." -msgstr "" - -#: ../channels/emails.rst:267 -msgid "It's possible to turn off the tracking pixel entirely if you don't need to use it, in the Global Settings." -msgstr "" - -#: ../channels/emails.rst:272 -msgid "Tracking links in Emails" -msgstr "" - -#: ../channels/emails.rst:276 -msgid "Mautic tracks clicks of each link in an Email, with the stats displayed at the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../channels/emails.rst:279 -msgid "Unsubscribing" -msgstr "" - -#: ../channels/emails.rst:281 -msgid "Mautic has a built in means of allowing a Contact to unsubscribe from Email communication. You can insert the tokens ``{unsubscribe_text}`` or ``{unsubscribe_url}`` into your Email to have the text or the URL show at your desired location. The unsubscribe text token inserts a sentence with a link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../channels/emails.rst:283 -msgid "The unsubscribe URL token inserts the URL into your custom written instructions." -msgstr "" - -#: ../channels/emails.rst:285 -#: ../channels/emails.rst:298 -msgid "For example:" -msgstr "" - -#: ../channels/emails.rst:291 -msgid "You can find the configuration of the unsubscribe text in the global settings." -msgstr "" - -#: ../channels/emails.rst:294 -msgid "Online version" -msgstr "" - -#: ../channels/emails.rst:296 -msgid "Mautic also enables the hosting of an online version of the Email sent. To use that feature, simply add the following as URL on text to generate the online version link ``{webview_url}``." -msgstr "" - -#: ../channels/emails.rst:305 -msgid "Bounce management" -msgstr "" - -#: ../channels/emails.rst:307 -msgid "Mautic provides a feature which allows monitoring of IMAP accounts to detect bounced Emails and unsubscribe requests." -msgstr "" - -#: ../channels/emails.rst:309 -msgid "Note that Mautic makes use of \"append\" Email addresses. The return-path or the list-unsubscribe header uses something like ``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows Mautic to determine what type of Email it's when it examines the inbox through IMAP. The ``abc123`` gives Mautic information about the Email itself, for example which Contact it was it sent to, what Mautic Email address it originated from, etc." -msgstr "" - -#: ../channels/emails.rst:311 -msgid "Some Email services overwrite the return-path header with that of the account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring won't work." -msgstr "" - -#: ../channels/emails.rst:313 -msgid "Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../channels/emails.rst:318 -msgid "Monitored inbox configuration" -msgstr "" - -#: ../channels/emails.rst:322 -msgid "To use the Monitored Email feature you must have the PHP IMAP extension enabled (most shared hosts already have this turned on). Go to the Mautic configuration and fill in the account details for the inbox(es) you wish to monitor." -msgstr "" - -#: ../channels/emails.rst:328 -msgid "It's possible to use a single inbox, or to configure a unique inbox per monitor." -msgstr "" - -#: ../channels/emails.rst:330 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../channels/emails.rst:336 -msgid "Note that it's best to create an Email address specifically for this purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../channels/emails.rst:338 -msgid "If sending mail through GMail, the Return Path of the Email is automatically rewritten as the GMail address. It's best to use a sending method other than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../channels/emails.rst:340 -msgid "If you select an Unsubscribe folder, Mautic also appends the Email as part of the \"List-Unsubscribe\" header. It then parses messages it finds in that folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../channels/emails.rst:343 -msgid "Webhook bounce management" -msgstr "" - -#: ../channels/emails.rst:348 -msgid "Elastic Email Webhook" -msgstr "" - -#: ../channels/emails.rst:352 -msgid "Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../channels/emails.rst:354 -msgid "Fill in the Notification URL as ``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../channels/emails.rst:356 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../channels/emails.rst:None -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../channels/emails.rst:363 -msgid "Useful resources" -msgstr "" - -#: ../channels/emails.rst:365 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../channels/emails.rst:366 -msgid ":xref:`Getting Started with Elastic` - Getting Started resources from Elastic Email" -msgstr "" - -#: ../channels/emails.rst:371 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../channels/emails.rst:375 -msgid "Mautic supports the bounce and complaint management from Amazon Simple Email Service (Amazon SES)." -msgstr "" - -#: ../channels/emails.rst:377 -msgid "Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../channels/emails.rst:None -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../channels/emails.rst:None -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../channels/emails.rst:387 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../channels/emails.rst:None -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../channels/emails.rst:None -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../channels/emails.rst:397 -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../channels/emails.rst:400 -msgid "When using the **SMTP method**, the callback URL is your Mautic URL followed by ``/mailer/amazon/callback``." -msgstr "" - -#: ../channels/emails.rst:402 -msgid "When using the **API method** (available since Mautic 3.2), the callback URL is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../channels/emails.rst:0 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../channels/emails.rst:408 -msgid "The subscriber is in the pending state until it's confirmed. SES calls your Amazon Webhook with a ``SubscriptionConfirmation`` request including a callback URL. To confirm, Mautic sends a request back to this callback URL to validate the subscription. Therefore make sure your Mautic installation can connect to the internet, otherwise the subscription remains in the pending state and won't work. If your Webhook is https, you also need to make sure that your site is using a valid SSL certificate which is verifiable by Amazon." -msgstr "" - -#: ../channels/emails.rst:410 -msgid "Check the log file for more information. If you are having problems getting the subscription out of the pending state, it may also help to configure the topic's 'Delivery status logging' settings, so that delivery status (at least for http/s) gets logged to CloudWatch. Then you can visit the Logs section of the CloudWatch Management Console and see the exact details of delivery failures. For example, an invalid SSL certificate might result in an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../channels/emails.rst:447 -msgid "Mandrill Webhook" -msgstr "" - -#: ../channels/emails.rst:451 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../channels/emails.rst:453 -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../channels/emails.rst:459 -msgid "Click Add a Webhook" -msgstr "" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../channels/emails.rst:467 -msgid "Mautic supports the following Webhooks: message is bounced, message is soft-bounced, message is rejected, message is marked as spam and message recipient unsubscribes." -msgstr "" - -#: ../channels/emails.rst:471 -msgid "Fill in the ``Post To URL`` as ``https://mautic.example.com/mailer/mandrill/callback`` then click Create Webhook." -msgstr "" - -#: ../channels/emails.rst:473 -msgid "Click Custom Metadata and create two new metadata fields: ``hashId`` and ``contactId``" -msgstr "" - -#: ../channels/emails.rst:0 -#: ../channels/emails.rst:0 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../channels/emails.rst:486 -msgid "Mailjet Webhook" -msgstr "" - -#: ../channels/emails.rst:490 -msgid "Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../channels/emails.rst:492 -msgid "Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../channels/emails.rst:498 -msgid "On the event type list, select the one you want to link to your Mautic account" -msgstr "" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../channels/emails.rst:506 -msgid "Mautic supports the following webhooks: message is bounced, message is blocked, message is spam." -msgstr "" - -#: ../channels/emails.rst:510 -msgid "Fill in the URL boxes as ``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../channels/emails.rst:515 -msgid "SparkPost Webhook" -msgstr "" - -#: ../channels/emails.rst:516 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../channels/emails.rst:522 -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../channels/emails.rst:528 -msgid "Fill in the Target URL as ``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../channels/emails.rst:530 -#: ../channels/emails.rst:553 -msgid "Select the following Events" -msgstr "" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing events" -msgstr "" - -#: ../channels/emails.rst:537 -msgid "SendGrid Webhook" -msgstr "" - -#: ../channels/emails.rst:541 -msgid "Login to your SendGrid account and go to Settings > Mail Setting > Mail Settings" -msgstr "" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../channels/emails.rst:549 -msgid "Fill in the Target URL as `https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing Events" -msgstr "" - -#: ../channels/emails.rst:559 -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing save settings" -msgstr "" - -#: ../channels/emails.rst:568 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../channels/emails.rst:572 -msgid "This isn't required, but if you want to be able to select the Contacts with bounced Emails easily - for example to delete all bounced Contacts - create a Segment with bounced Emails." -msgstr "" - -#: ../channels/emails.rst:574 -msgid "Go to Segments > New." -msgstr "" - -#: ../channels/emails.rst:575 -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../channels/emails.rst:576 -msgid "Select the Filters tab." -msgstr "" - -#: ../channels/emails.rst:577 -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../channels/emails.rst:578 -msgid "Wait for the ``bin/console mautic:segments:update`` command to be automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../channels/emails.rst:579 -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../channels/emails.rst:584 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../channels/emails.rst:589 -msgid "Email open tracking" -msgstr "" - -#: ../channels/emails.rst:591 -msgid "Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../channels/emails.rst:593 -msgid "When a Contact opens an Email using an Email client like Outlook, Thunderbird, or GMail, the client tries to load the images in it. The image load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../channels/emails.rst:595 -msgid "Some Email clients have auto loading images turned off, and Contacts have to selectively \"Load Images\" inside an Email message. Some automatically open all images before delivering the Email to the Contact." -msgstr "" - -#: ../channels/emails.rst:597 -msgid "If the images aren't loaded for this reason or another, or if they're opened automatically before sending the Email on to the Contact, Mautic doesn't know about the open action. Therefore, Email open tracking isn't very accurate." -msgstr "" - -#: ../channels/emails.rst:600 -msgid "Email link tracking" -msgstr "" - -#: ../channels/emails.rst:602 -msgid "Before sending an Email, Mautic replaces all links in the Email with links back to Mautic including a unique key. If the Contact clicks on such a link, the link redirects the Contact to Mautic, which then tracks the click action and redirects the Contact to the original location. It's fast, so the Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../channels/emails.rst:604 -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../channels/emails.rst:606 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../channels/emails.rst:607 -msgid "You sent it to an existing Contact via a Campaign or a Segment Email. Emails sent by the Send Example link, direct Email from the Contact profile, or Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../channels/emails.rst:608 -msgid "Make sure the URL in the href attribute is absolute and valid. It should start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../channels/emails.rst:609 -msgid "You've opened the link in a incognito browser (not in the same session where you're logged into Mautic)" -msgstr "" - -#: ../channels/emails.rst:610 -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../channels/emails.rst:613 -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../channels/emails.rst:614 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../channels/emails.rst:616 -msgid "This is because Mautic sends test Emails to a Mautic User and not to a Mautic Contact." -msgstr "" - -#: ../channels/emails.rst:618 -msgid "Mautic Users can't unsubscribe and therefore the unsubscribe link looks like this: ``https://mautic.example.com/|URL|``. However, the link **does** work correctly when you send the Email to a Contact." -msgstr "" - -#: ../channels/emails.rst:620 -msgid "Best practice is to create a Segment with a small number of Contacts to receive test Emails - for example, yourself - which ensures that you can fully test features such as unsubscribe behaviour." -msgstr "" - -#: ../channels/focus_items.rst:2 -msgid "Focus Items" -msgstr "" - -#: ../channels/focus_items.rst:4 -msgid "Focus items allow you to engage Users on your site through bars, modals, notifications, popups, and light boxes. It's possible to initiate Focus Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../channels/focus_items.rst:6 -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../channels/focus_items.rst:9 -msgid "Focus Item settings" -msgstr "" - -#: ../channels/focus_items.rst:10 -msgid "There are several different types of Focus Items, and many ways to configure them to deliver your strategic marketing goals." -msgstr "" - -#: ../channels/focus_items.rst:13 -msgid "Types of Focus Item" -msgstr "" - -#: ../channels/focus_items.rst:15 -msgid "There are three different types of Focus Item that you can create within Mautic. These allow you to achieve different marketing goals with your Focus Items. Select the appropriate option for your needs." -msgstr "" - -#: ../channels/focus_items.rst:0 -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../channels/focus_items.rst:21 -msgid "**Collect Data** - This option presents a Form - which must already exist - within the Focus Item. This allows you to gather more information about your website visitors. Mautic considers a successful conversion on this type of Focus Item when there is a submission of this Form. This option is great for capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../channels/focus_items.rst:22 -msgid "**Display a Notice** - This option presents a message to your visitors. There is no option for detecting a conversion with this type of Focus Item. This option is great for announcements and important messages." -msgstr "" - -#: ../channels/focus_items.rst:23 -msgid "**Emphasize a link** - This option allows you to drive visitors to a specific link which might be a resource on your website, a Mautic Landing Page, or any other web-based resource. Mautic considers a link click to be a successful conversion with this Focus Item. This option is great for Landing Pages to highlight a promotion or a sale - it displays a button to click which directs the visitor to a given link." -msgstr "" - -#: ../channels/focus_items.rst:26 -msgid "Engagement options" -msgstr "" - -#: ../channels/focus_items.rst:28 -msgid "For each type of Focus Item, there are settings to configure which control the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../channels/focus_items.rst:0 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../channels/focus_items.rst:36 -msgid "**Animate** - When set to Yes, this applies a slide-in animation to the Focus Item. When set to No, the item appears without any kind of sliding motion." -msgstr "" - -#: ../channels/focus_items.rst:41 -msgid "**When to engage** - This setting controls the Focus Item shows. There are several options:" -msgstr "" - -#: ../channels/focus_items.rst:38 -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../channels/focus_items.rst:39 -msgid "**After slightly scrolling down** - Wait a little while until the visitor starts to scroll down the page" -msgstr "" - -#: ../channels/focus_items.rst:40 -msgid "**After scrolling to the middle** - Wait until the visitor scrolls to the middle of the page" -msgstr "" - -#: ../channels/focus_items.rst:41 -msgid "**After scrolling to the bottom** - Wait until the visitor scrolls right to the bottom of the page" -msgstr "" - -#: ../channels/focus_items.rst:42 -msgid "**Visitor intends to leave** - If the visitor's cursor moves over the address bar, or from the page to the tabs - for example to close the tab or open a new tab" -msgstr "" - -#: ../channels/focus_items.rst:43 -msgid "**Timeout before engage** - This option allows you to set the delay in seconds after reaching the option selected in **When to engage**. For example, if the setting is **Upon arrival** and **Timeout before engage** is 2 seconds, the Focus Item appears two seconds *after* the visitor lands on the page." -msgstr "" - -#: ../channels/focus_items.rst:49 -msgid "**How often to engage** - This option allows you to control how frequently the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../channels/focus_items.rst:45 -msgid "**Every page** - Show on every page the visitors engages with on your website" -msgstr "" - -#: ../channels/focus_items.rst:46 -msgid "**Once per session** - Show once for each time that the visitor accesses your website" -msgstr "" - -#: ../channels/focus_items.rst:47 -msgid "**Every 2 minutes** - Show the Focus Item every two minutes that the visitor is on your website" -msgstr "" - -#: ../channels/focus_items.rst:48 -msgid "**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor is on your website" -msgstr "" - -#: ../channels/focus_items.rst:49 -msgid "**Once per hour** - Show the Focus Item once every hour that the visitor is on your website" -msgstr "" - -#: ../channels/focus_items.rst:50 -msgid "**Once per day** - Show the Focus Item once per day that the visitor is on your website" -msgstr "" - -#: ../channels/focus_items.rst:51 -msgid "**Stop engaging after a conversion** - This option is only available for the types which track a conversion (Collect Data and Emphasize a Link). If set to Yes, the Focus Item no longer displays if the visitor has either submitted the Form (Collect Data type) or clicked on the link (Emphasize a Link type)." -msgstr "" - -#: ../channels/focus_items.rst:56 -msgid "Styles" -msgstr "" - -#: ../channels/focus_items.rst:58 -msgid "There are four styles to choose from when creating a Focus Item. Each style has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../channels/focus_items.rst:0 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../channels/focus_items.rst:65 -msgid "Bar" -msgstr "" - -#: ../channels/focus_items.rst:66 -msgid "The Bar style creates a line across the top or bottom of the page, which includes the content of your Focus Item." -msgstr "" - -#: ../channels/focus_items.rst:68 -msgid "**Allow hide** - when set to Yes, website visitors have a small arrow to hide the bar. The arrow shows on the right hand side of the bar. Once clicked, the bar shrinks to hide the content but the arrow is still be visible in case they want to maximise it again with a single click. If set to No, the visitor can't hide the bar." -msgstr "" - -#: ../channels/focus_items.rst:69 -msgid "**Push page down** - This option allows the bar to push the page content up or down under the bar if set to Yes. If set to No, the bar covers the content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../channels/focus_items.rst:70 -msgid "**Make sticky** - If set to Yes, the bar stays anchored in position even when the visitor scrolls the page. If set to No, the bar won't anchored and disappears as the visitor scrolls the page, and re-appears as they reverse the scroll." -msgstr "" - -#: ../channels/focus_items.rst:71 -msgid "**Placement** - This option allows you to display the bar at the top or the bottom of the page." -msgstr "" - -#: ../channels/focus_items.rst:74 -msgid "**Size** - This option allows you to specify the thickness of the bar, and the font size. The options include:" -msgstr "" - -#: ../channels/focus_items.rst:73 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../channels/focus_items.rst:74 -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../channels/focus_items.rst:77 -msgid "Modal" -msgstr "" - -#: ../channels/focus_items.rst:78 -msgid "The Modal style is probably the most popular style, and is often referred to as a pop-up or a light box." -msgstr "" - -#: ../channels/focus_items.rst:80 -msgid "Modals are small boxes which appear aligned horizontally centred on the page. The content behind the pop-up darkens when the Focus Item is active, which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../channels/focus_items.rst:82 -msgid "**Placement** - This option allows you to select whether you would like the Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../channels/focus_items.rst:85 -msgid "Notification" -msgstr "" - -#: ../channels/focus_items.rst:87 -msgid "The Notification style is a small box which appears, sometimes referred to as a pop-up. Unlike with the Modal style, the pop-up shows in one of the four corners of the page, and the main content underneath the notification isn't darkened out behind the pop-up." -msgstr "" - -#: ../channels/focus_items.rst:89 -msgid "Visitors can choose to close this type of Focus Item with the *X* button in the top right corner of the notification." -msgstr "" - -#: ../channels/focus_items.rst:91 -msgid "**Placement** - This option allows you to select the corner to display the notification." -msgstr "" - -#: ../channels/focus_items.rst:94 -msgid "Full page" -msgstr "" - -#: ../channels/focus_items.rst:96 -msgid "The full page Focus Item completely takes over the whole page, hiding the rest of the page content until the visitor clicks the *X* button in the top right hand corner of the Focus Item." -msgstr "" - -#: ../channels/focus_items.rst:98 -msgid "There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../channels/focus_items.rst:101 -msgid "Colors" -msgstr "" - -#: ../channels/focus_items.rst:103 -msgid "By default, Mautic determines the top colors extracted from the snapshot. Four colors are currently supported. You can customize colors by using the color picker or entering a hex code." -msgstr "" - -#: ../channels/focus_items.rst:105 -msgid "**Primary color** - For the Bar style, the primary color is the background color of the bar - For the Modal, Notification and full page styles, the primary color is the outline around the Focus Item with a thicker line on top than on the other three sides." -msgstr "" - -#: ../channels/focus_items.rst:108 -msgid "**Text color** - The color of the headline text entered in the Content section of the Focus Item editor" -msgstr "" - -#: ../channels/focus_items.rst:109 -msgid "**Button color** - The background color for the button on the Collect Data and Emphasize Link Focus Item types. This option isn't available for the Display a notice Focus Item type." -msgstr "" - -#: ../channels/focus_items.rst:110 -msgid "**Button text color** - The color for the button text on the Collect Data and Emphasize Link Focus Item types. This option isn't available for the Display Notice Focus Item type." -msgstr "" - -#: ../channels/focus_items.rst:113 -msgid "Content" -msgstr "" - -#: ../channels/focus_items.rst:114 -msgid "There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../channels/focus_items.rst:0 -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../channels/focus_items.rst:121 -msgid "Basic" -msgstr "" - -#: ../channels/focus_items.rst:122 -msgid "This editor mode allows a simplified experience with a few fields - depending on the Focus Item type - with the content being automatically rendered on the Focus Item as it's created." -msgstr "" - -#: ../channels/focus_items.rst:124 -msgid "**Headline** - This is the main text used on the Focus Item. The aim is to capture the visitor's interest and attention." -msgstr "" - -#: ../channels/focus_items.rst:125 -msgid "**Tagline** - This option is only available for Emphasize a Link Focus Item types. It allows you to provide a second line of text to add more incentive for the visitor to click the link. This field is optional." -msgstr "" - -#: ../channels/focus_items.rst:126 -msgid "**Font** - This option allows you to select from available fonts used in the Focus Item. The font list isn't customizable." -msgstr "" - -#: ../channels/focus_items.rst:127 -msgid "**Select the Form to insert** - This option is only available for Collect Data Focus Item types. It allows you to select an existing Mautic Form to use with the Focus Item. For styling and formatting reasons, you may want to create a Form specifically for the Focus Item, adding styling attributes to the Attributes tab on the Form fields." -msgstr "" - -#: ../channels/focus_items.rst:128 -msgid "**Link text** - This option is only available for Emphasize a Link Focus Item types. It allows you to specify the text used on the Focus Item's button." -msgstr "" - -#: ../channels/focus_items.rst:129 -msgid "**Link URL** - This option is only available for Emphasize a Link Focus Item types. It allows you to specify the URL where you'd like to drive visitors with the Focus Item." -msgstr "" - -#: ../channels/focus_items.rst:130 -msgid "**Open in a new window** - This option is only available for Emphasize a Link Focus Item types. If set to Yes, this ensures that the link is opened in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../channels/focus_items.rst:133 -msgid "Editor" -msgstr "" - -#: ../channels/focus_items.rst:134 -msgid "This allows the User to edit the content with the global editor available in Mautic." -msgstr "" - -#: ../channels/focus_items.rst:137 -msgid "HTML" -msgstr "" - -#: ../channels/focus_items.rst:138 -msgid "This allows the User to enter HTML into a blank field for a fully customized Focus Item." -msgstr "" - -#: ../channels/focus_items.rst:141 -msgid "If you decide to switch editing styles, ensure that you clear the data from the previous style, otherwise Mautic may not display the final intended content." -msgstr "" - -#: ../channels/focus_items.rst:145 -msgid "Creating a Focus Item" -msgstr "" - -#: ../channels/focus_items.rst:147 -msgid "To create a new Focus Item, go to Channels > Focus Items and click the New button." -msgstr "" - -#: ../channels/focus_items.rst:150 -msgid "Some websites won't allow the preview to display. For the preview to work, the site must use an SSL certificate, and it must not block iframe previews with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../channels/focus_items.rst:152 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../channels/focus_items.rst:154 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../channels/focus_items.rst:156 -msgid "**Website** - A website you would like to use to preview the Focus Item as you are building it - see preceding note, some websites won't allow this feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../channels/focus_items.rst:158 -msgid "**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../channels/focus_items.rst:160 -msgid "**Published** - Whether the Focus Item is available for use - published - or not available - unpublished" -msgstr "" - -#: ../channels/focus_items.rst:164 -#: ../channels/sms.rst:113 -msgid "**Publish at (date/time)** - This allows you to define the date and time at which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../channels/focus_items.rst:166 -#: ../channels/sms.rst:115 -msgid "**Unpublish at (date/time)** - This allows you to define the date and time at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../channels/focus_items.rst:170 -msgid "**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus Items, and Landing Pages. Any UTM tags with values populated are automatically appended to the end of any links used in the focus item. See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../channels/focus_items.rst:0 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../channels/focus_items.rst:179 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../channels/focus_items.rst:183 -msgid "After you specify the general information for the Focus Item, click the builder option in the top right corner. If you've specified a URL in the Website field on the details page, the system displays a preview. If you don't see a preview, the website might block iframe previews. Hence, you may need to add the focus item to a development or staging environment without these security restrictions - if available - to see the preview." -msgstr "" - -#: ../channels/focus_items.rst:186 -msgid "The preview of the website doesn't appear until you select a style from the options on the Focus Item Builder." -msgstr "" - -#: ../channels/focus_items.rst:0 -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../channels/focus_items.rst:192 -msgid "You can use the menu on the sidebar to configure the Focus Item to your liking. The preview area on the left allows you to see how it appears on your website. You can also use the mobile phone icon at the top right to switch to a responsive view. This is important to ensure that you aren't blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../channels/focus_items.rst:0 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../channels/focus_items.rst:199 -msgid "Using Focus Items" -msgstr "" - -#: ../channels/focus_items.rst:201 -msgid "Once you have created your Focus Item, you're ready to publish it to your website. If you're not quite ready for the Focus Item to go live but you need to get it set up on your website, you can set the Focus Item to Unpublished." -msgstr "" - -#: ../channels/focus_items.rst:204 -msgid "Deploying to a website" -msgstr "" - -#: ../channels/focus_items.rst:206 -msgid "When you save the Focus Item, the code snippet required to display it on your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../channels/focus_items.rst:0 -msgid "Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../channels/focus_items.rst:213 -msgid "You may need assistance from your web development team to implement the Focus Item tracking code on your website." -msgstr "" - -#: ../channels/focus_items.rst:215 -msgid "You must also ensure that you have specified your website's domain where you expect to use the Focus Item in the CORS settings for your Mautic instance, otherwise it won't appear. To verify this, go to Settings > Configuration > System Settings > CORS Settings and set Restricted Domains to Yes. Ensure that you specify your domain in the relevant field. Alternatively (but not recommended, as this would allow other websites to display your Focus Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../channels/focus_items.rst:220 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../channels/focus_items.rst:224 -msgid "It's possible to trigger a Focus Item to appear as part of a Campaign workflow. This doesn't require you to paste the Focus Item code onto your website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../channels/focus_items.rst:226 -msgid "Within the Campaign, add a decision for ``Visits a Page``, and then select the Action of ``Show Focus Item``. Note that you must precede it by ``Visits a Page`` to trigger the Focus Item." -msgstr "" - -#: ../channels/focus_items.rst:229 -msgid "Sometimes the Campaign Action can be unreliable and it's dependent on your Campaign steps, so it's recommended to use the direct embedding method in most cases." -msgstr "" - -#: ../channels/focus_items.rst:232 -msgid "Measuring success" -msgstr "" - -#: ../channels/focus_items.rst:234 -msgid "When using the Emphasize a Link type, Mautic displays the link on the Focus Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../channels/focus_items.rst:236 -msgid "If you change the link in a Focus Item after deployment, all links are listed in the overview." -msgstr "" - -#: ../channels/focus_items.rst:238 -msgid "Additionally, Mautic applies UTM tags on Focus Items to both Form submissions and link clicks. If you are using a Focus Item to submit a Form, it's recommended that you have a Submit Action on the Form to record the UTM tags." -msgstr "" - -#: ../channels/marketing_messages.rst:2 -msgid "Marketing Messages" -msgstr "" - -#: ../channels/marketing_messages.rst:5 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../channels/marketing_messages.rst:7 -msgid "Located under the Channels section in Mautic, Marketing Messages is one of the Channels available to you through which you can optimize and personalize communication with your customers." -msgstr "" - -#: ../channels/marketing_messages.rst:9 -msgid "Marketing messages allow you to empower the customer to decide how they prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../channels/marketing_messages.rst:0 -msgid "Screenshot showing the Marketing Messages option in the main navigation menu of Mautic." -msgstr "" - -#: ../channels/marketing_messages.rst:15 -msgid "With Marketing Messages, you can create content and make it available through multiple Channels - Email, SMS, Browser Notification, Mobile Notification, Tweets, and any other Channel you decide to create using Mautic's extendable open architecture." -msgstr "" - -#: ../channels/marketing_messages.rst:17 -msgid "When using the 'Send Marketing Message' action in a Campaign, you can create the message in any or all of these Channels. If the Contact has a Channel preference set on their profile, Mautic sends the content on the preferred Channel. If they haven't specified a Channel, Mautic uses the default Channel - Email." -msgstr "" - -#: ../channels/marketing_messages.rst:19 -msgid "It's also possible for a Contact to specify their own frequency rules and pause communication all together on a Channel. When exceeding the defined limit and scheduling a Marketing Message, Mautic uses another Channel which has available frequency." -msgstr "" - -#: ../channels/marketing_messages.rst:24 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../channels/marketing_messages.rst:28 -msgid "To create a new Marketing Message, navigate to the Channels section and click Marketing Messages. Click on New." -msgstr "" - -#: ../channels/marketing_messages.rst:30 -msgid "Provide a name and description for the Marketing Message, then choose the Channels you wish to use." -msgstr "" - -#: ../channels/marketing_messages.rst:33 -msgid "You must set up and configure the Channels before they become available - if you haven't set up Mobile Notifications or Text Messages, you won't see it as an option when creating a Marketing Message." -msgstr "" - -#: ../channels/marketing_messages.rst:0 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../channels/marketing_messages.rst:39 -msgid "To enable a Channel, click Yes on the slider, and select - or create - the message." -msgstr "" - -#: ../channels/push_notifications.rst:2 -msgid "Mobile push notifications" -msgstr "" - -#: ../channels/push_notifications.rst:4 -msgid "Mobile notifications integrate your iOS and Android app with :xref:`OneSignal`. Using your own OneSignal account, you can now push a notification to your Contacts's mobile device - with their permission. Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications listed under Channels in the menu." -msgstr "" - -#: ../channels/push_notifications.rst:6 -msgid "For more detailed information see the :xref:`OneSignal iOS` and :xref:`OneSignal Android` documentation." -msgstr "" - -#: ../channels/push_notifications.rst:9 -msgid "Setup" -msgstr "" - -#: ../channels/push_notifications.rst:14 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../channels/push_notifications.rst:16 -msgid "To enable Push Notifications in your iOS app, add the following code - or a variant of it - inside your ``application`` func of ``AppDelegate``. The code examples below use Swift 3.1. Please modify them to your needs if you are using C#." -msgstr "" - -#: ../channels/push_notifications.rst:36 -msgid "For ease of use, we've created the following struct and func for sending user data to Mautic. Create this struct in your app, and import it where appropriate." -msgstr "" - -#: ../channels/push_notifications.rst:39 -msgid "UserData struct" -msgstr "" - -#: ../channels/push_notifications.rst:58 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../channels/push_notifications.rst:60 -msgid "This is a basic function for pushing the UserData struct to your Mautic installation. It will push the User data, and then display the response from Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../channels/push_notifications.rst:94 -msgid "Notification statistics" -msgstr "" - -#: ../channels/push_notifications.rst:96 -msgid "In addition to the UserData that gets pushed to Mautic, you can push open / interaction stats to Mautic by sending the UserData struct, with an appended stat JSON key." -msgstr "" - -#: ../channels/sms.rst:2 -msgid "SMS Text messages" -msgstr "" - -#: ../channels/sms.rst:4 -msgid "With the SMS Channel it's possible to send text messages from Campaigns in Mautic." -msgstr "" - -#: ../channels/sms.rst:7 -msgid "To use this Channel you must first set up an SMS transport, such as :doc:`/plugins/twilio`." -msgstr "" - -#: ../channels/sms.rst:12 -msgid "Type of Text Messages" -msgstr "" - -#: ../channels/sms.rst:16 -msgid "Mautic allows you to create two types of Text Messages, in the same way as you can create different types of Emails." -msgstr "" - -#: ../channels/sms.rst:21 -msgid "Template Text Messages" -msgstr "" - -#: ../channels/sms.rst:25 -msgid "A template Text Message is automatically sent by Campaigns, Forms, Point triggers etc. You can edit Template Text Messages after creation, but they can't manually send them to a Contact list." -msgstr "" - -#: ../channels/sms.rst:30 -msgid "Segment Text Messages" -msgstr "" - -#: ../channels/sms.rst:34 -msgid "A Segment Text Message can be manually sent to Contact lists - Segments - in Mautic. Once sent, you can't edit the Text Message, however you can send it to new Contacts as they join the associated Segment." -msgstr "" - -#: ../channels/sms.rst:36 -msgid "Note that these are marketing Text Messages by default, and each Contact can only receive the Text Message once - it's the same principle as a mailing list." -msgstr "" - -#: ../channels/sms.rst:38 -msgid "You must initiate the send of Segment Text Messages with the ``Send Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation ` for more information." -msgstr "" - -#: ../channels/sms.rst:43 -msgid "Creating a Text Message" -msgstr "" - -#: ../channels/sms.rst:47 -msgid "To create a Text Message, navigate to Channels > Text Messages and click the 'New' button." -msgstr "" - -#: ../channels/sms.rst:0 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../channels/sms.rst:53 -msgid "Select whether you wish to create a Template or Segment Text Message, which presents the required fields." -msgstr "" - -#: ../channels/sms.rst:58 -msgid "Template Text Message fields" -msgstr "" - -#: ../channels/sms.rst:62 -#: ../channels/sms.rst:89 -msgid "The following fields are available:" -msgstr "" - -#: ../channels/sms.rst:0 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../channels/sms.rst:68 -msgid "**Internal name** - This is the internal name used within Mautic when referring to this Text Message. For example Mautic uses this in dropdown selection lists in the Campaign Builder." -msgstr "" - -#: ../channels/sms.rst:72 -msgid "**Text Message** - This is the actual content of the Text Message which is sent to the Contact. There is a character count below the field which helps you to identify the required number of messages to send the full text. You may use tokens, such as ``{contactfield=firstname}``. To find the appropriate token, go to Settings > Custom Fields and use the field alias with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../channels/sms.rst:76 -#: ../channels/sms.rst:103 -msgid "**Category** - This allows you to select a Category to help you with organizing your Text Messages." -msgstr "" - -#: ../channels/sms.rst:78 -#: ../channels/sms.rst:105 -msgid "**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../channels/sms.rst:80 -#: ../channels/sms.rst:107 -msgid "**Published** - This allows you to set the published status of the Text Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../channels/sms.rst:85 -msgid "Segment Text Message fields" -msgstr "" - -#: ../channels/sms.rst:0 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../channels/sms.rst:95 -msgid "**Internal name** - This is the internal name used within Mautic when referring to this Text Message. For example, Mautic uses this in dropdown selection lists in the Campaign Builder." -msgstr "" - -#: ../channels/sms.rst:99 -msgid "**Text Message** - This is the actual content of the Text Message sent to the Contact. There is a character count below the field which helps you to identify the required number of messages to send the full text. You may use tokens, such as ``{contactfield=firstname}``. To find the appropriate token, go to Settings > Custom Fields and use the field alias with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../channels/sms.rst:109 -msgid "**Contact Segment** - This allows you to define the Segment/s who should receive the Text Message." -msgstr "" - -#: ../channels/sms.rst:118 -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../channels/sms.rst:122 -msgid "It's also possible to create a Text Message from within the Campaign Builder. To do this, select the Campaign Action of Send Text Message and press the New Text Message button rather than selecting an existing Text Message in the dropdown." -msgstr "" - -#: ../channels/sms.rst:0 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../channels/sms.rst:128 -msgid "As you plan to use this Text Message within a Campaign, it's by default created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../channels/sms.rst:133 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../channels/sms.rst:137 -msgid "Mautic allows you to create a single message - for example 'Red shoes on offer today!' - in multiple Channels, and have it delivered through the Channel which the Contact prefers. This means that they only receive the message once, and through their preferred Channel. You can create the messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../channels/sms.rst:139 -msgid "If a Contact's preferred Channel is Text Messages, Mautic delivers the message through the Text Message Channel when a Marketing Message includes a Text Message." -msgstr "" - -#: ../channels/sms.rst:0 -msgid "Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../channels/sms.rst:146 -msgid "Managing unsubscribes" -msgstr "" - -#: ../channels/sms.rst:149 -msgid "In order for Mautic to process Text Message replies for unsubscribes and replies to messages, you must first configure the Webhook. For more information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../channels/sms.rst:151 -msgid "Contacts can unsubscribe from your Text Messages by replying with the word ``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, ``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not Contact' (DNC) for the SMS Channel, and won't allow messages again via this Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../channels/sms.rst:153 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../channels/sms.rst:0 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../channels/sms.rst:162 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../channels/sms.rst:166 -msgid "In a Mautic Campaign, where Mautic has an active Text Message provider, there is a Campaign Action called 'Sends a Text Message' which allows you to monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../channels/sms.rst:0 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../channels/sms.rst:172 -msgid "This decision tracks replies to your messages and looks for specified patterns within a message. This isn't dependent on you first sending the Contact a message." -msgstr "" - -#: ../channels/sms.rst:174 -msgid "For example, you can specify 'red' in 'Pattern the reply should match'. If your message contains language, such as reply from the Contact using the word 'Red' to a question of their favourite shoe colour, Mautic looks for incoming Text Messages with that pattern. In this example, you may add an action on the decision's Yes path for adding a colour preference to the Contact's profile." -msgstr "" - -#: ../channels/sms.rst:177 -msgid "Important notes" -msgstr "" - -#: ../channels/sms.rst:179 -msgid "Contact phone numbers should be in the format +XXXXXXX including the + and with no spaces" -msgstr "" - -#: ../channels/sms.rst:180 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../channels/sms.rst:181 -msgid "When configuring the Twilio Plugin, the sender number must be in the format +XXXXXXX and this number associated with the Twilio account" -msgstr "" - -#: ../channels/social_monitoring.rst:4 -msgid "Social Monitoring" -msgstr "" - -#: ../channels/social_monitoring.rst:8 -msgid "It's possible to add Contacts to Mautic through monitoring Twitter for mentions and hashtags." -msgstr "" - -#: ../channels/social_monitoring.rst:11 -msgid "Requirements" -msgstr "" - -#: ../channels/social_monitoring.rst:13 -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../channels/social_monitoring.rst:14 -msgid "You must trigger the Social Monitoring :doc:`cron job ` periodically." -msgstr "" - -#: ../channels/social_monitoring.rst:19 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../channels/social_monitoring.rst:23 -msgid "To create a new Social Monitor, go to Channels > Social Monitoring and click New." -msgstr "" - -#: ../channels/social_monitoring.rst:25 -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../channels/social_monitoring.rst:27 -msgid "**Twitter mention** - Any time someone mentions a specified username, Mautic creates them as a Contact" -msgstr "" - -#: ../channels/social_monitoring.rst:28 -msgid "**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, Mautic creates them as a Contact." -msgstr "" - -#: ../channels/social_monitoring.rst:0 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../channels/social_monitoring.rst:35 -msgid "Social mentions" -msgstr "" - -#: ../channels/social_monitoring.rst:37 -msgid "When selecting the Twitter Mention monitoring method, the following fields are available:" -msgstr "" - -#: ../channels/social_monitoring.rst:39 -msgid "**Twitter mention** - The Twitter handle you want to track mentions of. Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../channels/social_monitoring.rst:40 -#: ../channels/social_monitoring.rst:67 -msgid "**Description** - A description to use internally within Mautic to tell the marketer what the monitor is tracking." -msgstr "" - -#: ../channels/social_monitoring.rst:41 -#: ../channels/social_monitoring.rst:68 -msgid "**Match Contact names** - If set to Yes, Mautic tries to match the names of Contacts created from Twitter and associate the Twitter account with their existing Contact record. If set to No, this won't happen and you are likely to experience duplicated Contacts." -msgstr "" - -#: ../channels/social_monitoring.rst:43 -#: ../channels/social_monitoring.rst:70 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../channels/social_monitoring.rst:45 -msgid "**Published** - This allows you to set the published status of the Social Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../channels/social_monitoring.rst:49 -msgid "**Publish at (date/time)** - This allows you to define the date and time at which this Social Monitor is monitoring for new Contacts. You might use this to coincide with an event, for example." -msgstr "" - -#: ../channels/social_monitoring.rst:51 -msgid "**Unpublish at (date/time)** - This allows you to define the date and time at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../channels/social_monitoring.rst:55 -#: ../channels/social_monitoring.rst:82 -msgid "**Contact Segment** - This allows you to define the Segment/s in Mautic that the Contacts join if detected with this Social Monitor. This can be useful for identifying people who are talking about your brand, and directly add them to a Segment to take further action." -msgstr "" - -#: ../channels/social_monitoring.rst:0 -msgid "Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../channels/social_monitoring.rst:62 -msgid "Hashtags" -msgstr "" - -#: ../channels/social_monitoring.rst:64 -msgid "When selecting the Twitter Hashtags monitoring method, the following fields are available:" -msgstr "" - -#: ../channels/social_monitoring.rst:66 -msgid "**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't include the # symbol - for example ``mautic``." -msgstr "" - -#: ../channels/social_monitoring.rst:72 -msgid "**Published** - This allows you to set the published status of the Social Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../channels/social_monitoring.rst:76 -msgid "**Publish at (date/time)** - This allows you to define the date and time at which this Social Monitor is monitoring for new Contacts. This might be used to coincide with an event, for example." -msgstr "" - -#: ../channels/social_monitoring.rst:78 -msgid "**Unpublish at (date/time)** - This allows you to define the date and time at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../channels/social_monitoring.rst:0 -msgid "Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" - -#: ../channels/utm_tags.rst:2 -#: ../channels/utm_tags.rst:38 -msgid "UTM tags" -msgstr "" - -#: ../channels/utm_tags.rst:4 -msgid "UTM tags are also known as parameters or short text codes. When adding these tags to URLs or links, marketers can track performance, create customised audiences, and analyze on website traffic from various sources. Marketers can also use UTM tags with Google Analytics to clearly understand the effectiveness of their marketing content and return on investment for marketing projects." -msgstr "" - -#: ../channels/utm_tags.rst:7 -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../channels/utm_tags.rst:9 -msgid "With UTM tags, you can:" -msgstr "" - -#: ../channels/utm_tags.rst:11 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../channels/utm_tags.rst:12 -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../channels/utm_tags.rst:13 -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../channels/utm_tags.rst:16 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../channels/utm_tags.rst:18 -msgid "To use UTM tags with Google Analytics where they appear in your Google Analytics Dashboard, you must install your Google Analytics tracking code on the resource you are linking to. This synchronizes with your Google Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../channels/utm_tags.rst:20 -msgid "If you use a Mautic landing page, you must go to Settings > Configuration > Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../channels/utm_tags.rst:0 -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../channels/utm_tags.rst:26 -msgid "If you use a non-Mautic Landing Page, you must manually embed the Google Analytics tracking script on the third-party Page." -msgstr "" - -#: ../channels/utm_tags.rst:28 -msgid "Mautic Users can automatically append UTM tags to all links in an Email or Focus Item. For other Channels, you can make the link trackable by including UTM values in the URL address. When a Contact clicks a link in an Email or Focus Item, Mautic records UTM tags and stores them in the Contact record. You can find the details on the Contact Event History overview. After recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../channels/utm_tags.rst:30 -msgid "You can use UTM tags to track Contacts who convert from Dynamic Web Content slots in Emails, and determine the source in Google Analytics or Mautic Reports. You can also use them as columns in a Report by selecting UTM codes as the data source." -msgstr "" - -#: ../channels/utm_tags.rst:32 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../channels/utm_tags.rst:34 -msgid "Title" -msgstr "" - -#: ../channels/utm_tags.rst:39 -msgid "Description" -msgstr "" - -#: ../channels/utm_tags.rst:40 -msgid "Campaign Source" -msgstr "" - -#: ../channels/utm_tags.rst:43 -msgid "The referring source of the web activity. It indicates the social network, search engine, newsletter name, or any other specific source driving the traffic." -msgstr "" - -#: ../channels/utm_tags.rst:42 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../channels/utm_tags.rst:43 -msgid "UTM code: utm_source" -msgstr "" - -#: ../channels/utm_tags.rst:44 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../channels/utm_tags.rst:45 -msgid "Campaign Medium" -msgstr "" - -#: ../channels/utm_tags.rst:48 -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../channels/utm_tags.rst:47 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../channels/utm_tags.rst:48 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../channels/utm_tags.rst:49 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../channels/utm_tags.rst:50 -msgid "Campaign Name" -msgstr "" - -#: ../channels/utm_tags.rst:53 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../channels/utm_tags.rst:52 -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../channels/utm_tags.rst:53 -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../channels/utm_tags.rst:54 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../channels/utm_tags.rst:55 -msgid "Campaign Content" -msgstr "" - -#: ../channels/utm_tags.rst:56 -msgid "The Assets within the messages. This non-configurable value auto-populates with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../channels/utm_tags.rst:57 -msgid "Campaign Term" -msgstr "" - -#: ../channels/utm_tags.rst:58 -msgid "The keyword to search a Campaign. This non-configurable value auto-populates within the link text and tracks links within the messages." -msgstr "" - -#: ../channels/utm_tags.rst:61 -msgid "You don't need to fill all the options. You can use one, or a few, or all of them, as required." -msgstr "" - -#: ../channels/utm_tags.rst:66 -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../channels/utm_tags.rst:70 -msgid "Mautic supports UTM tagging in Emails. Mautic can automatically append UTM tags to all links in an Email by entering the appropriate Campaign values in the fields provided." -msgstr "" - -#: ../channels/utm_tags.rst:72 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../channels/utm_tags.rst:73 -msgid "Create a new Email or edit an existing Email. If you choose to edit an existing Email, click the Email and then click Edit." -msgstr "" - -#: ../channels/utm_tags.rst:74 -#: ../channels/utm_tags.rst:90 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../channels/utm_tags.rst:75 -#: ../channels/utm_tags.rst:91 -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../channels/utm_tags.rst:76 -#: ../channels/utm_tags.rst:92 -msgid "Click Apply." -msgstr "" - -#: ../channels/utm_tags.rst:79 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../channels/utm_tags.rst:80 -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../channels/utm_tags.rst:81 -msgid "All links must include a trailing slash. Otherwise, UTM codes aren't appended." -msgstr "" - -#: ../channels/utm_tags.rst:84 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../channels/utm_tags.rst:86 -msgid "Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can automatically append UTM tags to all links in a Focus Item by entering the appropriate values in the field provided." -msgstr "" - -#: ../channels/utm_tags.rst:88 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../channels/utm_tags.rst:89 -msgid "Create a new focus item or open an existing one." -msgstr "" - -#: ../channels/web_notifications.rst:2 -msgid "Web notifications" -msgstr "" - -#: ../channels/web_notifications.rst:4 -msgid "Web Notifications can be an extremely powerful tool for the marketer. Mautic integrated with :xref:`OneSignal` which allows you to push information to a Contact as they browse through web resources (Mautic Landing Pages, or with some configuration (see :xref:`OneSignal web push`), on your own website), giving you one more Channel that you can use to build a relationship with them." -msgstr "" - -#: ../channels/web_notifications.rst:6 -msgid "Web notifications in Mautic use OneSignal by default. Using your own OneSignal account, you can now push a notification to your Contacts's browser - with their permission. Enable the OneSignal Plugin in Mautic's Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../channels/web_notifications.rst:8 -msgid "For more information see the OneSignal :xref:`OneSignal web push quickstart` documentation." -msgstr "" - -#: ../channels/web_notifications.rst:11 -msgid "Setup web notifications" -msgstr "" - -#: ../channels/web_notifications.rst:14 -msgid "Configuration" -msgstr "" - -#: ../channels/web_notifications.rst:16 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../channels/web_notifications.rst:18 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../channels/web_notifications.rst:0 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../channels/web_notifications.rst:24 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../channels/web_notifications.rst:28 -msgid "Download the SDK files from the next screen, and upload them to the root of your Mautic installation - this must be accessible at `https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../channels/web_notifications.rst:32 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../channels/web_notifications.rst:33 -msgid "Enable the features you wish to use - for example, whether to enable notifications on mobile apps, Landing Pages, tracked resources on your website, and whether to show a welcome notification after they subscribe. You can also specify a subdomain name, and if you're using iOS and Android notifications you can also enable these options - see :doc:`/channels/push_notifications`." -msgstr "" - -#: ../channels/web_notifications.rst:36 -msgid "Sending notifications" -msgstr "" - -#: ../channels/web_notifications.rst:37 -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../channels/web_notifications.rst:39 -msgid "Send with a Campaign Action" -msgstr "" - -#: ../channels/web_notifications.rst:40 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/docs_translations/companies.pot b/docs/docs_translations/companies.pot deleted file mode 100644 index 04b2f073..00000000 --- a/docs/docs_translations/companies.pot +++ /dev/null @@ -1,221 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../companies/companies_overview.rst:3 -msgid "Companies" -msgstr "" - -#: ../companies/companies_overview.rst:5 -msgid "Companies are a way to group Contacts based on association with organizations." -msgstr "" - -#: ../companies/companies_overview.rst:None -msgid "Mautic Company Overview" -msgstr "" - -#: ../companies/companies_overview.rst:12 -msgid "Engagements/Points chart" -msgstr "" - -#: ../companies/companies_overview.rst:14 -msgid "Engagements shown on the chart include any tracked action the Contacts made. Some examples might include page hits, Form submissions, Email opens and so on. The engagements line chart displays how active the Contacts of the Company were in the past 6 months. The chart displays also the sum of Points the Contacts received." -msgstr "" - -#: ../companies/companies_overview.rst:19 -msgid "List of Contacts assigned" -msgstr "" - -#: ../companies/companies_overview.rst:23 -msgid "You can find a table with the list of the assigned Contacts displaying the date of their last activity, preceding the information of the Company which includes the Company name, address, and all the custom Company fields, and the engagement chart. This is good way to have a view of the recent activity of the Contacts you know in this Company." -msgstr "" - -#: ../companies/companies_overview.rst:26 -msgid "Company duplicates" -msgstr "" - -#: ../companies/companies_overview.rst:27 -msgid "The Company name field is a unique identifier by default. You can choose any other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../companies/companies_overview.rst:29 -msgid "In *Configuration > Company Settings* you can choose the operator used when merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../companies/companies_overview.rst:None -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../companies/companies_overview.rst:35 -msgid "These settings allow Mautic to find and merge duplicate Companies during the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../companies/companies_overview.rst:38 -msgid "Company actions" -msgstr "" - -#: ../companies/companies_overview.rst:43 -msgid "Merging Companies" -msgstr "" - -#: ../companies/companies_overview.rst:47 -msgid "When editing a Company, you can merge this Company into another existing Company by using the **Merge** button." -msgstr "" - -#: ../companies/companies_overview.rst:49 -msgid "Search for the Company you wish to merge into, then click to start the merge. Contacts associated with the merged Companies now become associated with the remaining Company." -msgstr "" - -#: ../companies/companies_overview.rst:51 -msgid "After completion of the merge process, Mautic redirects you to the remaining Company, as the old Company no longer exists." -msgstr "" - -#: ../companies/companies_overview.rst:56 -msgid "Company Custom Fields" -msgstr "" - -#: ../companies/companies_overview.rst:60 -msgid "By default, a set of fields exist for Companies, but you can customize these fields to meet your needs." -msgstr "" - -#: ../companies/companies_overview.rst:62 -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../companies/companies_overview.rst:64 -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../companies/companies_overview.rst:66 -msgid "Save the custom field" -msgstr "" - -#: ../companies/companies_overview.rst:71 -msgid "Company Segments" -msgstr "" - -#: ../companies/companies_overview.rst:75 -msgid "You can create a Segment based on a Company record. Select any Company field to filter with and the matching criteria for it, and Mautic lists any Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../companies/companies_overview.rst:80 -msgid "Identifying Companies" -msgstr "" - -#: ../companies/companies_overview.rst:84 -msgid "Mautic identifies Companies strictly through a matching criteria based on **Company Name**, **City**, **Country or State**. If a city or a country isn't delivered as an identifying fields to identify a Contact, the Company won't match." -msgstr "" - -#: ../companies/companies_overview.rst:89 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../companies/companies_overview.rst:93 -msgid "It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../companies/companies_overview.rst:98 -msgid "Creating and managing Companies" -msgstr "" - -#: ../companies/companies_overview.rst:102 -msgid "To create or manage Companies, go to the Companies menu identified by the building icon in the left hand navigation. In this area you can create, edit, or delete Companies." -msgstr "" - -#: ../companies/companies_overview.rst:107 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../companies/companies_overview.rst:111 -msgid "There are different ways to assign a Company to a Contact as explained below:" -msgstr "" - -#: ../companies/companies_overview.rst:114 -msgid "Contact profile" -msgstr "" - -#: ../companies/companies_overview.rst:116 -msgid "You can assign a Contact to Companies in the Contact's profile, while creating or editing an existing Contact. Mautic considers the latest Company assigned as the primary Company for the Contact." -msgstr "" - -#: ../companies/companies_overview.rst:119 -msgid "Contacts list view" -msgstr "" - -#: ../companies/companies_overview.rst:121 -msgid "You can batch assign Companies to selected Contacts in the Contact's list view." -msgstr "" - -#: ../companies/companies_overview.rst:126 -msgid "Via a Campaign" -msgstr "" - -#: ../companies/companies_overview.rst:130 -msgid "You can assign a Company to identify Contacts through a Campaign by selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../companies/companies_overview.rst:135 -msgid "Through a Form" -msgstr "" - -#: ../companies/companies_overview.rst:139 -msgid "When identifying a Contact through a Form, you can also associate an existing Company or create a new one if:" -msgstr "" - -#: ../companies/companies_overview.rst:141 -msgid "The Form includes Company name as a Form field - mandatory for Company matching/creation," -msgstr "" - -#: ../companies/companies_overview.rst:142 -msgid "The Form includes City as a Form field - mandatory for Company matching/creation)," -msgstr "" - -#: ../companies/companies_overview.rst:143 -msgid "The Form includes Country as a form field - mandatory for Company matching/creation," -msgstr "" - -#: ../companies/companies_overview.rst:144 -msgid "The Form includes State as a form field - optional for Company matching/creation." -msgstr "" - -#: ../companies/companies_overview.rst:147 -msgid "Company scoring" -msgstr "" - -#: ../companies/companies_overview.rst:149 -msgid "It's possible to change the Company score through a Campaign action or a Form action. When using these actions, it's necessary to identify the Contact first, and then alter the score of the Companies assigned to that Contact." -msgstr "" - -#: ../companies/companies_overview.rst:151 -msgid "Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../companies/companies_overview.rst:152 -msgid "Once submitted or triggered, Mautic identifies Companies in the Campaign or Form to change their score." -msgstr "" - -#: ../companies/companies_overview.rst:157 -msgid "Setting the primary Company" -msgstr "" - -#: ../companies/companies_overview.rst:161 -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../companies/companies_overview.rst:None -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/docs_translations/components.pot b/docs/docs_translations/components.pot deleted file mode 100644 index 2dee25cf..00000000 --- a/docs/docs_translations/components.pot +++ /dev/null @@ -1,1301 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../components/assets.rst:2 -msgid "Assets" -msgstr "" - -#: ../components/assets.rst:4 -msgid "Assets are pieces of content you want to make available for your Contacts to access. You want to track and analyse who is viewing or downloading your Assets. You also may want to personalize the Contact's journey based on what Assets they interacted with. You may also do scoring based on interaction with Assets." -msgstr "" - -#: ../components/assets.rst:9 -msgid "Managing Assets" -msgstr "" - -#: ../components/assets.rst:12 -msgid "Asset Categories" -msgstr "" - -#: ../components/assets.rst:16 -msgid "Mautic allows you to organize Assets into Categories, which helps you easily locate resources. To create a new Category, review the :doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../components/assets.rst:21 -msgid "Working with Assets" -msgstr "" - -#: ../components/assets.rst:25 -msgid "Before creating an Asset, first establish and publish any Categories required. It's not possible to assign Assets to unpublished Categories. If you wish to use an Integration such as the Amazon S3 Plugin to host your files, set this up before creating an Asset." -msgstr "" - -#: ../components/assets.rst:30 -msgid "Creating a new Asset" -msgstr "" - -#: ../components/assets.rst:34 -msgid "Navigate to Components > Assets. Mautic lists any Assets you have previously created. Click New to begin creating an Asset." -msgstr "" - -#: ../components/assets.rst:36 -msgid "You create Assets by uploading local resources on your computer, or by locating the Asset from a remote storage host such as Amazon S3. There are limitations by size due to the settings of your server - any such restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../components/assets.rst:41 -msgid "Uploading an Asset" -msgstr "" - -#: ../components/assets.rst:45 -msgid "To upload an Asset, either drag the file into the box, or click in the box to open a file upload window. On selection of the file, it's automatically uploaded and appears in the boxed area." -msgstr "" - -#: ../components/assets.rst:47 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../components/assets.rst:53 -msgid "If you need to add extra file types, configure the maximum size of upload or the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../components/assets.rst:None -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../components/assets.rst:59 -#: ../components/dynamic_web_content.rst:112 -#: ../components/forms.rst:23 -msgid "The following fields are available:" -msgstr "" - -#: ../components/assets.rst:61 -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../components/assets.rst:62 -msgid "**Alias** - used to create the slug on the download URL. Created from the title automatically if not provided." -msgstr "" - -#: ../components/assets.rst:63 -msgid "**Description** - an internally used description to inform other Mautic Users what the Asset is and/or where it's used." -msgstr "" - -#: ../components/assets.rst:64 -msgid "**Category** - used to organize resources - see :doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../components/assets.rst:65 -msgid "**Language** - the language of this Asset - can be helpful in multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../components/assets.rst:66 -msgid "**Published** - Whether the Asset is available for use - published - or not available - unpublished" -msgstr "" - -#: ../components/assets.rst:70 -msgid "**Publish at (date/time)** - This allows you to define the date and time at which this Asset is available" -msgstr "" - -#: ../components/assets.rst:72 -msgid "**Unpublish at (date/time)** - This allows you to define the date and time at which this Asset ceases to be available" -msgstr "" - -#: ../components/assets.rst:76 -msgid "**Block search engines from indexing this file** - If you don't want to index files like PDF, DOCx and so forth, setting this switch to Yes sends the X-Robots-Tag no-index http header. If set to No, the header isn't sent and your files could become indexed by search engines." -msgstr "" - -#: ../components/assets.rst:78 -msgid "Depending on the type of file uploaded, a preview may display after the upload completes." -msgstr "" - -#: ../components/assets.rst:None -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../components/assets.rst:87 -msgid "Using remote Assets" -msgstr "" - -#: ../components/assets.rst:91 -msgid "Instead of uploading a file from your computer, you can either provide a link to a file on a cloud storage provider or browse your integrated cloud storage provider - for example an Amazon S3 bucket - by selecting the Remote tab, rather than Local." -msgstr "" - -#: ../components/assets.rst:96 -msgid "Viewing an Asset" -msgstr "" - -#: ../components/assets.rst:100 -msgid "Once you've uploaded an Asset, you'll want to make it available for your Contacts to access it. Using the Download URL from the Asset section in Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../components/assets.rst:102 -msgid "Copy and paste the link into your website, on a landing page, or as a link in an Email." -msgstr "" - -#: ../components/assets.rst:105 -msgid "In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the URL to open the Asset in a new tab." -msgstr "" - -#: ../components/assets.rst:107 -msgid "Whether the Asset downloads or opens in a new tab depends on the Contact's browser settings. To gate an Asset by requiring them to submit some information before downloading, you may have a Form submit action to download an Asset." -msgstr "" - -#: ../components/assets.rst:109 -msgid "To ensure that Contacts are providing you with valid Email addresses for high-value Assets, attach the Asset to an Email and use the send Email Form submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../components/assets.rst:114 -msgid "Editing an Asset" -msgstr "" - -#: ../components/assets.rst:118 -msgid "You can edit an Asset by clicking on the 'edit' button while viewing the Asset, or by selecting the arrow next to the checkbox for the Asset, and selecting 'edit'. The edit screens are the same as the view screens,with the saved content already populated in the fields." -msgstr "" - -#: ../components/assets.rst:123 -msgid "Deleting an Asset" -msgstr "" - -#: ../components/assets.rst:127 -msgid "It's possible to delete an Asset by clicking on the 'delete' button while viewing the Asset, or by selecting the arrow next to the checkbox for the Asset, and selecting 'delete'. Mautic displays a confirmation screen, prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../components/assets.rst:130 -msgid "Once deleted, you can't retrieve an Asset, and statistics relating to the number of downloads for that Asset are no longer be available. Contact Points accumulated as a result of accessing the resource remain. It's recommended where possible to unpublish Assets which are no longer in use - in future there may be an archive feature." -msgstr "" - -#: ../components/dynamic_web_content.rst:4 -msgid "Dynamic Web Content" -msgstr "" - -#: ../components/dynamic_web_content.rst:8 -msgid "Dynamic Web Content is one of several methods Mautic uses to personalize the web experience for Contacts. Marketers can display different content to different people in specific areas of a webpage. Mautic Users may want to personalize content based on data collected about the website visitor. Even anonymous Contacts may see Dynamic Content, if you've collected any information about them - such as location data." -msgstr "" - -#: ../components/dynamic_web_content.rst:11 -msgid "Preparation" -msgstr "" - -#: ../components/dynamic_web_content.rst:13 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../components/dynamic_web_content.rst:15 -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../components/dynamic_web_content.rst:16 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../components/dynamic_web_content.rst:17 -msgid "Do you collect the information required to accurately filter your Contacts in this way?" -msgstr "" - -#: ../components/dynamic_web_content.rst:21 -msgid "Website configuration" -msgstr "" - -#: ../components/dynamic_web_content.rst:23 -msgid "Once you've decided where on your website to display the content, you must create an area to add the content. Mautic is platform-agnostic - you can add slots into any website you have created. To do this, create an HTML slot to display the Dynamic Web Content." -msgstr "" - -#: ../components/dynamic_web_content.rst:25 -msgid "Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../components/dynamic_web_content.rst:33 -msgid "You can add your own default content between the ``
`` tags to ensure that content displays when the filters aren't matching - for example with new anonymous visitors or a Contact that doesn't match the criteria you have specified." -msgstr "" - -#: ../components/dynamic_web_content.rst:35 -msgid "Content Management System Plugins for Mautic also have specific ways to embed the content, for example:" -msgstr "" - -#: ../components/dynamic_web_content.rst:37 -msgid "**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default content {/mautic}``" -msgstr "" - -#: ../components/dynamic_web_content.rst:38 -msgid "**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default content [/mautic]``" -msgstr "" - -#: ../components/dynamic_web_content.rst:41 -msgid "Mautic configuration" -msgstr "" - -#: ../components/dynamic_web_content.rst:44 -msgid "It's important to ensure that you configure your CORS settings correctly when using Dynamic Web Content - if this isn't set up your content won't display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../components/dynamic_web_content.rst:49 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../components/dynamic_web_content.rst:53 -msgid "Mautic provides both Campaign-based and filter-based Dynamic Web Content. To create either type:" -msgstr "" - -#: ../components/dynamic_web_content.rst:55 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../components/dynamic_web_content.rst:56 -msgid "Click New to create a new slot" -msgstr "" - -#: ../components/dynamic_web_content.rst:None -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../components/dynamic_web_content.rst:62 -msgid "The following values are available:" -msgstr "" - -#: ../components/dynamic_web_content.rst:64 -msgid "**Internal name** - This is how the slot displays in your list of Dynamic Web Content slots. You should include information on what you're personalizing - for example, country - and the content in the slot - for example, United States. If you're creating a personalized slot for people in the United States, you can name the slot Country - United States. If you plan to have more than one personalized content slot for the same audience across your website, include the page title or other identifying information for the particular slot." -msgstr "" - -#: ../components/dynamic_web_content.rst:68 -msgid "**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot. You may include images and videos. If you prefer HTML, click the `` Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic Web Content supports tokens in the same way as Landing Pages or Emails. To add a token, start typing with the ``{`` character and available tokens are displayed. These include:" -msgstr "" - -#: ../components/dynamic_web_content.rst:70 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../components/dynamic_web_content.rst:71 -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../components/dynamic_web_content.rst:72 -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../components/dynamic_web_content.rst:73 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../components/dynamic_web_content.rst:74 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../components/dynamic_web_content.rst:78 -msgid "**Category** - Assign a Category to help you organize your Dynamic Web Content items. See :doc:`/categories/categories-overview` for more information." -msgstr "" - -#: ../components/dynamic_web_content.rst:80 -msgid "**Language** - the language of this Dynamic Web Content - can be helpful in multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../components/dynamic_web_content.rst:82 -msgid "**Is a translation of** - If you're creating a slot in a second language translation - for example to use on a multilingual website - select the original base language Dynamic Web Content item which you're translating. The same slot displays the appropriate language based on the Campaign or filters set, but Mautic shows the translated content if a visitor is viewing the page in a different browser language." -msgstr "" - -#: ../components/dynamic_web_content.rst:84 -msgid "**Published** - Whether the Dynamic Web Content item is available for use - published - or not available - unpublished" -msgstr "" - -#: ../components/dynamic_web_content.rst:86 -msgid "**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web Content to Contacts through a Campaign. When set to No, you can specify filters for visitors to see the content." -msgstr "" - -#: ../components/dynamic_web_content.rst:88 -msgid "**Requested slot name** - shown if using non-Campaign based Dynamic Web Content, this allows you to specify the slot name on your website in which the Contact sees the content." -msgstr "" - -#: ../components/dynamic_web_content.rst:92 -msgid "**Publish at (date/time)** - This allows you to define the date and time at which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../components/dynamic_web_content.rst:94 -msgid "**Unpublish at (date/time)** - This allows you to define the date and time at which this Dynamic Web Content item ceases to be available for displaying to Contacts." -msgstr "" - -#: ../components/dynamic_web_content.rst:98 -msgid "**UTM tags** - Mautic can append UTM tags to any links and Form submissions. See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../components/dynamic_web_content.rst:103 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../components/dynamic_web_content.rst:108 -msgid "Creating the request" -msgstr "" - -#: ../components/dynamic_web_content.rst:110 -msgid "Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-based dynamic content. The Campaign Decision checks if a Campaign member visits a page where a Dynamic Content slot is. Visitors to a page with a Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../components/dynamic_web_content.rst:114 -msgid "**Name** - the Campaign event. Start the name with something like Req-DWC: so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../components/dynamic_web_content.rst:116 -msgid "**Requested Slot Name** - Mautic checks for the slot name. You can see how many Contacts got to the Campaign event where you're checking if their visits request the slot." -msgstr "" - -#: ../components/dynamic_web_content.rst:118 -msgid "As an example, these two fields might look like: ``Req-DWC: Country-Header`` in the Contact history. The requested slot name is the slot Mautic looks for on the page. If it's on a 3rd-party page, it'll be in the code you use to add the Dynamic Content slot to your page. If it's on a Mautic Landing Page, define the slot name on the Landing Page." -msgstr "" - -#: ../components/dynamic_web_content.rst:120 -msgid "**Select Default Content** - choose the content which displays to visitors who don't meet the conditions set at the next step of the Campaign. Users may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../components/dynamic_web_content.rst:None -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../components/dynamic_web_content.rst:127 -msgid "Creating the filters" -msgstr "" - -#: ../components/dynamic_web_content.rst:129 -msgid "Once created, you can add filters on the affirmative path to determine which Contacts see the different variations. This happens with Conditions - read more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../components/dynamic_web_content.rst:131 -msgid "As an example, you might use the condition of ``Country = United States of America`` to filter only people located in the country." -msgstr "" - -#: ../components/dynamic_web_content.rst:134 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../components/dynamic_web_content.rst:135 -msgid "Once the relevant filters are in place, you can add the Campaign action of 'Push Dynamic Content' which triggers Mautic to send the relevant content to the Contacts matching the filters." -msgstr "" - -#: ../components/dynamic_web_content.rst:None -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../components/dynamic_web_content.rst:141 -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../components/dynamic_web_content.rst:None -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../components/dynamic_web_content.rst:147 -msgid "You may wish to decide on a naming convention for your Campaigns, for example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../components/dynamic_web_content.rst:152 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../components/dynamic_web_content.rst:156 -msgid "Filters are often easier to work with and can be more reliable, as they don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../components/dynamic_web_content.rst:159 -msgid "Creating filters" -msgstr "" - -#: ../components/dynamic_web_content.rst:161 -msgid "When creating the Dynamic Web Content item, select No for the 'Is Campaign based' switch which displays the filters tab." -msgstr "" - -#: ../components/dynamic_web_content.rst:163 -msgid "Use the filters to configure the criteria that Contacts must meet to see the Dynamic Web Content slot." -msgstr "" - -#: ../components/dynamic_web_content.rst:165 -msgid "Provide the content in the slot within the text editor area. Mautic displays this content when the filters match." -msgstr "" - -#: ../components/dynamic_web_content.rst:170 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../components/dynamic_web_content.rst:175 -msgid "Default content" -msgstr "" - -#: ../components/dynamic_web_content.rst:177 -msgid "Mautic displays the default content when the visitor doesn't match any of the filter criteria, or the visitor isn't a tracked/identified Contact. It's important to have something in the default content, rather than an empty space." -msgstr "" - -#: ../components/dynamic_web_content.rst:179 -msgid "For Campaign-based Dynamic Web Content, you specify the default content when you configure the Request Dynamic Content decision. In filter-based Dynamic Web Content, you create the default content on the page where you are inserting the slot, and Mautic replaces it with the Dynamic Content if the filter match." -msgstr "" - -#: ../components/dynamic_web_content.rst:182 -msgid "If you're using Focus Items as your Dynamic Web Content and only showing specific Focus Items to specific audiences, you don't need to have any default content, as Focus Items don't physically take up space on your page." -msgstr "" - -#: ../components/forms.rst:2 -msgid "Forms" -msgstr "" - -#: ../components/forms.rst:4 -msgid "Mautic subscribers use Forms for lead generation and data collection. With Mautic Forms, marketers can convert anonymous web visitors to known Contacts and build a Contact's profile with progressive profiling. The more data you can gather without appearing intrusive or annoying, the more effective your personalization strategy." -msgstr "" - -#: ../components/forms.rst:9 -msgid "Creating a new Form" -msgstr "" - -#: ../components/forms.rst:13 -msgid "To create a new Form:" -msgstr "" - -#: ../components/forms.rst:15 -msgid "Go to Components > Forms and click New" -msgstr "" - -#: ../components/forms.rst:18 -msgid "Select the type of Form you wish to create" -msgstr "" - -#: ../components/forms.rst:17 -msgid "**Campaign Form** - Mautic allows you to trigger a Campaign with the submission of this type of Form. Campaign Forms have less actions directly associated with the Form submit actions - which happen immediately after Form submission - as most actions trigger as part of a Campaign workflow." -msgstr "" - -#: ../components/forms.rst:18 -msgid "**Standalone Form** - A more commonly used Form, this allows the execution of many submit actions immediately at the point of Form submission." -msgstr "" - -#: ../components/forms.rst:21 -msgid "Forms with a lot of submit actions - particularly when submitting to third party systems such as a Customer Relationship Management system - can have an impact on the Form submission time. This is especially the case if there are a lot of fields. Consider using a Campaign Form if you can wait for the cron job to trigger the actions." -msgstr "" - -#: ../components/forms.rst:25 -msgid "**Category** - Assign a Category to help you organize your Forms." -msgstr "" - -#: ../components/forms.rst:27 -msgid "**Published** - Whether the Form is available for use - published - or not available - unpublished. Unpublished Forms won't be visible when you've added the Form using JavaScript. If you used the manual method to copy and paste the Form HTML, the Form remains visible but visitors **won't** be able to submit it - an error message prevents them from submitting if they try to submit an unpublished Form." -msgstr "" - -#: ../components/forms.rst:31 -msgid "**Publish at (date/time)** - This allows you to define the date and time at which this Form is available for submissions." -msgstr "" - -#: ../components/forms.rst:33 -msgid "**Unpublish at (date/time)** - This allows you to define the date and time at which this Form ceases to be available for submissions." -msgstr "" - -#: ../components/forms.rst:37 -msgid "**Disable search indexing** - If Yes, Mautic prevents search engines from finding and displaying the Form in search results by sending the ``noindex`` http header." -msgstr "" - -#: ../components/forms.rst:39 -msgid "**Kiosk mode** - If Yes, Mautic turns off tracking of Contacts created through the Form, so that the Form doesn't generate cookies or associate any IP address with the Contact record. Marketers may refer to this as 'data entry mode'. It's ideal for using at conferences or events where several Contacts may enter their information using the same device, as it prevents associating the activity on the device to Contacts." -msgstr "" - -#: ../components/forms.rst:41 -msgid "**Render style** - If Yes, the Form displays with the styling from either the selected Mautic Theme or the Attributes tab of the Form fields. When No, the Form adopts the styling of where it's embedded." -msgstr "" - -#: ../components/forms.rst:43 -msgid "**Theme** - Select a Mautic Theme which has styling for a Form. This dictates the styling of the Form when added to an external website or Application if 'Render style' is Yes." -msgstr "" - -#: ../components/forms.rst:46 -msgid "Not all Themes include Form styling. Check the Features column on your Themes listing in the Theme Manager to see which Themes include styling for Forms." -msgstr "" - -#: ../components/forms.rst:51 -msgid "Configuring Forms" -msgstr "" - -#: ../components/forms.rst:54 -msgid "Once you have selected the type of Form, you have some additional options to set." -msgstr "" - -#: ../components/forms.rst:57 -msgid "Details" -msgstr "" - -#: ../components/forms.rst:59 -msgid "The available details fields are:" -msgstr "" - -#: ../components/forms.rst:61 -msgid "**Name** - Title your Form, including any terms you may want to use to search for the Form." -msgstr "" - -#: ../components/forms.rst:62 -msgid "**Description** - Add a description, so other Mautic Users can see what the goal of the Form is. It may help to include information like any location where the Form appears." -msgstr "" - -#: ../components/forms.rst:65 -msgid "**Successful Submit Action** - Options include:" -msgstr "" - -#: ../components/forms.rst:64 -msgid "**Remain at Form** - nothing appears to happen, the Form remains as is" -msgstr "" - -#: ../components/forms.rst:65 -msgid "**Redirect URL** - directs the Contact to another location, such as a thank you Landing Page, after submission" -msgstr "" - -#: ../components/forms.rst:66 -msgid "**Display message** - shows a message over the Form once the Contact has submitted the Form." -msgstr "" - -#: ../components/forms.rst:67 -msgid "**Redirect URL/Message** - If you decide to use the Redirect URL successful submit action, paste the URL where you'd like to direct submitters. If you use Display message, enter the message to display." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing standalone Form" -msgstr "" - -#: ../components/forms.rst:74 -msgid "Fields" -msgstr "" - -#: ../components/forms.rst:76 -msgid "To control the maximum number of fields shown on a Form:" -msgstr "" - -#: ../components/forms.rst:78 -msgid "**Maximum fields displayed at a time** - This setting applies progressive profiling across multiple Forms. Select the maximum number of fields to display on a single Form." -msgstr "" - -#: ../components/forms.rst:80 -msgid "To add a new field to your Form:" -msgstr "" - -#: ../components/forms.rst:82 -msgid "Click the Add a new field dropdown and select the type of field you wish to use. Available fields include:" -msgstr "" - -#: ../components/forms.rst:84 -msgid "**CAPTCHA** - A basic tool for spam protection requiring the Form submitter to answer a question, or detecting when spambots try to submit data in a hidden CAPTCHA field - sometimes referred to as a honeypot. It's recommended to use some kind of CAPTCHA on every Form. It's also possible to support reCAPTCHA and other tools with third-party Plugins." -msgstr "" - -#: ../components/forms.rst:86 -msgid "**Checkbox Group** - This field allows a visitor to select one or more options from a list using checkboxes. This field type can also provide a single checkbox - for example to gain consent to use cookies and send marketing Emails or other messages to the Contact." -msgstr "" - -#: ../components/forms.rst:89 -msgid "You can associate checkbox group fields with *boolean* and *select - multiple* fields, but not *select* fields." -msgstr "" - -#: ../components/forms.rst:91 -msgid "**Date** - This field allows the visitor to select a date with a calendar picker. The formatting of the date applies the default setting in your Configuration." -msgstr "" - -#: ../components/forms.rst:93 -msgid "**Date/time** - Similar to the date field, this allows the visitor to select both the date and the time using a calendar picker." -msgstr "" - -#: ../components/forms.rst:95 -msgid "**Description** - A basic header field, most often used to provide a visual title for the Form. The header field acts as the field name or label. The description area - accessed under the Properties tab - is a free text WYSIWYG editor, where you can add a description of the Form. By default, the description shows immediately below the header field in paragraph text format." -msgstr "" - -#: ../components/forms.rst:97 -msgid "**Email** - This field requires the visitor to provide a valid Email address using the correct syntax expected from an Email address - ``name@domain.com``. It's recommended to have at least one Email field on your Form, as by default the Email field is the default identifier of a Contact in Mautic." -msgstr "" - -#: ../components/forms.rst:99 -msgid "**File** - This allows visitors to upload a file on the Form." -msgstr "" - -#: ../components/forms.rst:102 -msgid "When using the file upload field there is a limit of 1,000 submissions using the same filename. Note that you can attach the submitted files in the \"Send Form result\" action." -msgstr "" - -#: ../components/forms.rst:104 -msgid "**HTML area** - This field allows marketers to add custom HTML to their Form." -msgstr "" - -#: ../components/forms.rst:106 -msgid "**Hidden** - This field won't be visible on the Form, but include default values, saved along with the Form submission, for reporting or internal tagging purposes." -msgstr "" - -#: ../components/forms.rst:108 -msgid "**List - Country** - This populates Mautic's default, non-editable country list. To use a custom list you should make use of the Select field type and manually enter the countries you would like to include." -msgstr "" - -#: ../components/forms.rst:110 -msgid "**Page break** - This allows marketers to break up the Form into multiple parts or field groupings." -msgstr "" - -#: ../components/forms.rst:112 -msgid "**Number** - This field validates that the entered values are digits. The field allows decimals and negative numbers, but no other non-numerical values - including commas. On a mobile device, the keyboard changes to a number pad when a visitor clicks into this field." -msgstr "" - -#: ../components/forms.rst:114 -msgid "**Password** - This allows the visitor to create a password. Use this field if the Form creates an account and Mautic posts the results to another system/Form. You must not save the entered field value to the Contact profile for security reasons." -msgstr "" - -#: ../components/forms.rst:116 -msgid "**Phone** - This field maps by default to the Phone field, and validates numbers using the international format for phone numbers. The validation requires a country code - for example +1 for the United States of America or +44 for the United Kingdom)." -msgstr "" - -#: ../components/forms.rst:118 -msgid "**Radio group** - This field provides a group of single-select options with a radio button, sometimes referred to as an option button group." -msgstr "" - -#: ../components/forms.rst:120 -msgid "**Select** - This option shows a dropdown list where a visitor may choose one option. This field also allows multiple selections, which changes the display to a box with the options listed. On a mobile device, a single select box shows a dialog box with radio buttons, and with checkboxes for a multi-select field." -msgstr "" - -#: ../components/forms.rst:122 -msgid "**Social login** - This allows the visitor to connect their Twitter, Facebook or LinkedIn profiles with their Contact record. You must configure the Plugin for the social network before using this field." -msgstr "" - -#: ../components/forms.rst:124 -msgid "**Text** - This field shows a text box with 255 characters available. Common uses include specifying the visitor's first name, last name, city, and so forth." -msgstr "" - -#: ../components/forms.rst:126 -msgid "**Text area** - Similar to the text field, but without the 255 character limitation. The text area field has a character limit of 65,535 characters." -msgstr "" - -#: ../components/forms.rst:128 -msgid "**URL** - This field validates the entry as being in the expected format for a URL, including ``https://`` or ``http://``" -msgstr "" - -#: ../components/forms.rst:131 -msgid "Field options" -msgstr "" - -#: ../components/forms.rst:133 -msgid "Based on the field selected, Mautic displays various tabs in the fields editor interface. The available tabs are:" -msgstr "" - -#: ../components/forms.rst:135 -msgid ":ref:`General`" -msgstr "" - -#: ../components/forms.rst:136 -msgid ":ref:`Mapped field`" -msgstr "" - -#: ../components/forms.rst:137 -msgid ":ref:`Validation`" -msgstr "" - -#: ../components/forms.rst:138 -msgid ":ref:`Properties`" -msgstr "" - -#: ../components/forms.rst:139 -msgid ":ref:`Attributes`" -msgstr "" - -#: ../components/forms.rst:140 -msgid ":ref:`Behavior`" -msgstr "" - -#: ../components/forms.rst:143 -msgid "General" -msgstr "" - -#: ../components/forms.rst:145 -msgid "**Label** - This is the title of your field, telling the visitor what you'd like them to enter in the field. The label shows before the Form field by default." -msgstr "" - -#: ../components/forms.rst:147 -msgid "**Show label?** - When No, Mautic won't display the label on the Form." -msgstr "" - -#: ../components/forms.rst:149 -msgid "**Save result** - When No, Mautic won't save the data entered in the Form to the Form submissions table. When Yes, the submissions are accessible in the Form submission results. If mapped to a Contact field, Mautic still saves the data to that field." -msgstr "" - -#: ../components/forms.rst:151 -msgid "**Default value** - This allows the marketer to provide a default value for a field. The default value is useful when setting a value as a hidden field, or when you expect the visitor to enter a certain value. The Contact can change the default value when they complete the Form if the field is visible." -msgstr "" - -#: ../components/forms.rst:153 -msgid "**Help message** - This allows the marketer to add information for the visitor about what they should enter in the field, or why they should provide the information." -msgstr "" - -#: ../components/forms.rst:155 -msgid "**Input placeholder** - This allows the marketer to add text within the Form field, which gives the visitor an idea of what they should enter. The text disappears as soon as they click into the field, whereas default values don't. This can be particularly helpful in prompting the visitor if you require the data in a particular format, for example ``@Twitter`` for a Twitter account, including the ``@`` symbol." -msgstr "" - -#: ../components/forms.rst:158 -msgid "Mapped field" -msgstr "" - -#: ../components/forms.rst:160 -msgid "The mapped field tab allows the marketer to connect a field with an existing Contact or Company field in Mautic. This allows the data from the Form submission to automatically populate into the mapped field. Without the mapping, this information won't save in the Contact profile." -msgstr "" - -#: ../components/forms.rst:162 -msgid "The data type for the Form field should match the data type of the mapped field. For example, a date/time field should map to a Contact or Company field which uses the date/time field." -msgstr "" - -#: ../components/forms.rst:165 -msgid "Validation" -msgstr "" - -#: ../components/forms.rst:167 -msgid "The validation tab allows you to set whether the field is mandatory or not. If the field is mandatory and it's not completed by the visitor, the Form displays an error and the visitor sees a message informing them that they must complete the field before submitting the Form." -msgstr "" - -#: ../components/forms.rst:169 -msgid "Switch the slider to ``Yes`` to make the field mandatory." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing Form validation" -msgstr "" - -#: ../components/forms.rst:175 -msgid "It's also possible to add a validation message specific to this field, giving the visitor a prompt when they submit the Form and haven't included this field." -msgstr "" - -#: ../components/forms.rst:178 -msgid "Properties" -msgstr "" - -#: ../components/forms.rst:180 -msgid "The properties tab won't show on every field type. Different field types have different associated properties to configure." -msgstr "" - -#: ../components/forms.rst:183 -msgid "CAPTCHA" -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing CAPTCHA Form properties" -msgstr "" - -#: ../components/forms.rst:189 -msgid "With a CAPTCHA field, the answer field should be blank if you are using this as a honeypot to trap spam submissions. This hides the field, and spambots try to populate the field with data." -msgstr "" - -#: ../components/forms.rst:191 -msgid "Mautic recognizes if there's data in a honeypot CAPTCHA field and understands that it can't be a human submitting the Form." -msgstr "" - -#: ../components/forms.rst:193 -msgid "To have a human answer a basic question or statement - for example ``What's 2+2`` or ``Enter 'CAPTCHA' here`` - you would enter the expected input in the answer field, in this case, ``4`` or ``CAPTCHA``. The field's label should be the question, or you can use the label CAPTCHA and then have the question as the input placeholder." -msgstr "" - -#: ../components/forms.rst:195 -msgid "The custom error message allows you to display something which informs the human if they have entered the wrong information. The default message is ``The answer to \"{label}\" is incorrect. Please try again``." -msgstr "" - -#: ../components/forms.rst:198 -msgid "Checkbox group, radio group and select" -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing checkbox field values with a mapped custom field" -msgstr "" - -#: ../components/forms.rst:204 -msgid "With the checkbox, radio box and select fields, the properties tab allows you to choose what should be available for the visitor to select." -msgstr "" - -#: ../components/forms.rst:206 -msgid "If you have mapped the Form field to a Custom Field in Mautic, there is also the option to use the values provided in the Custom Field rather than listing them separately. This helps to prevent duplication and errors in the Form options." -msgstr "" - -#: ../components/forms.rst:208 -msgid "If you prefer to create your own field options, the ``Optionlist`` allows you to add options with a label and value pair." -msgstr "" - -#: ../components/forms.rst:210 -msgid "The label field controls the display of the field to the visitor completing the Form, and the value field controls the data saved to the database and stored against the Contact record. While they often match this might not always be the case. For example with a GDPR checkbox, the label might be ``Yes I accept that I may receive Email communications from this Company`` whereas the value stored to the database may be ``Yes`` or ``1``." -msgstr "" - -#: ../components/forms.rst:212 -msgid "In select fields, there are two additional settings to allow for setting the Empty Value - which serves the same purpose as the Input Placeholder and isn't saved to the database - and to determine whether to allow multiple values, which changes the field from ``Select`` to ``Select - Multiple``." -msgstr "" - -#: ../components/forms.rst:215 -msgid "Description area" -msgstr "" - -#: ../components/forms.rst:217 -msgid "Use the text entry field in the properties tab of the Description field to enter the information you would like to show with the Form - for example why the visitor should complete the Form. Often this information might display on the website, but you can also include it in the Form itself with this field." -msgstr "" - -#: ../components/forms.rst:220 -msgid "File" -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing file upload properties" -msgstr "" - -#: ../components/forms.rst:226 -msgid "When uploading a file within a Form there are several options under the properties tab:" -msgstr "" - -#: ../components/forms.rst:228 -msgid "Allowed file extensions: it's possible to set the file extensions permitted by providing a comma separated list." -msgstr "" - -#: ../components/forms.rst:229 -msgid "Maximum file size: the maximum size of attachment - also limited by server settings." -msgstr "" - -#: ../components/forms.rst:230 -msgid "Public accessible link to download: can you access the file via a public link?" -msgstr "" - -#: ../components/forms.rst:231 -msgid "Set as Contact profile image: set the image uploaded to be their Contact avatar" -msgstr "" - -#: ../components/forms.rst:234 -msgid "Attributes" -msgstr "" - -#: ../components/forms.rst:236 -msgid "Attributes are CSS tags which change the styling of a particular Form." -msgstr "" - -#: ../components/forms.rst:239 -msgid "Setting the Render Style to No on the Form means that Mautic ignores the styling in these fields." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing the attributes for a checkbox group" -msgstr "" - -#: ../components/forms.rst:245 -msgid "**Field HTML name**: this is the machine name of the field, populated automatically from the label. You can customise this field if the label is long. You reference this field is when connecting Mautic Forms to other Forms, or when using the Manual Copy function to manually add the Form to your website or app." -msgstr "" - -#: ../components/forms.rst:246 -msgid "**Label attributes**: this field changes the way the label text appears. You should use the format ``style=\"attribute: descriptor\"`` to change the style. For example, to change the label to red, use ``style=\"color: red\"`` or ``style=\"color: #ff0000\"``." -msgstr "" - -#: ../components/forms.rst:247 -msgid "**Input attributes**: changes the way any text inside the Form field appears. This applies to the input placeholder text, text entered by the visitor submitting the Form, and the options for the select fields when Allow Multiple is Yes - including List - Country." -msgstr "" - -#: ../components/forms.rst:248 -msgid "**Field container attributes**: this changes the Form field. Use this to change the size of the box, fill color, rounded edges, or any other properties of the actual field." -msgstr "" - -#: ../components/forms.rst:249 -msgid "**Radio/Check box label attributes**: similar to input attributes, when available this field allows you to customize the way that radio buttons and checkboxes appear." -msgstr "" - -#: ../components/forms.rst:252 -msgid "Behavior" -msgstr "" - -#: ../components/forms.rst:255 -msgid "Text" -msgstr "" - -#: ../components/forms.rst:257 -msgid "The Behavior tab helps marketers to improve the experience for the visitor completing the Form. It also helps marketers implement progressive profiling, to gather more data from the Contact which helps in optimized personalization." -msgstr "" - -#: ../components/forms.rst:259 -msgid "**Show when value exists**: if Mautic knows the Contact and they're tracked, when a value exists for a field Mautic hides the field when this setting is No. This prevents the Contact answering the same question multiple times. You may want to display the field even if it's already known when you want to ensure you have the most up to date information about the Contact." -msgstr "" - -#: ../components/forms.rst:260 -msgid "**Show after X submissions**: this allows the marketer to show certain fields only when the Contact has submitted the Form a specified number of times. Enter a value between ``1`` and ``200``. When left undefined, the field shows every time the Contact views the Form. The goal is to minimize the number of fields shown to the Contact, so it's recommended to hide fields if it's not necessary to verify the values." -msgstr "" - -#: ../components/forms.rst:261 -msgid "**Auto-fill data**: this allows you to pre-populate Contact data with known Contacts where the information exists in the Contact profile. Auto-fill works with Mautic Landing Pages, and data won't pre-populate when placing the Form anywhere else. Even if you're hiding this field, you may wish to turn on auto-fill to ensure saving of the information with the Form submission." -msgstr "" - -#: ../components/forms.rst:264 -msgid "Field order" -msgstr "" - -#: ../components/forms.rst:266 -msgid "To change the order of fields on your Form:" -msgstr "" - -#: ../components/forms.rst:268 -msgid "Click the field you would like to move" -msgstr "" - -#: ../components/forms.rst:269 -msgid "Drag the field to a new location" -msgstr "" - -#: ../components/forms.rst:272 -msgid "Form actions" -msgstr "" - -#: ../components/forms.rst:274 -msgid "You may want to trigger certain actions to happen immediately after Form submission - this is what Form actions are for. This might include communications with the Contact, tracking, internal notifications, or other Contact management tasks." -msgstr "" - -#: ../components/forms.rst:277 -msgid "The Form actions available in Mautic are also available in Standalone Forms, which include more options as they're not associated with Campaigns. Campaigns tend to trigger most actions through Campaign actions so Forms associated with Campaigns only have a basic set of Form actions." -msgstr "" - -#: ../components/forms.rst:279 -msgid "**Add to Company's Score**: if a Contact associated with a Company record in Mautic has submitted the Form, you can add or subtract Points to the Company's overall score. Company scoring in Mautic doesn't aggregate Points for all its associated Contacts. Any actions that you want to contribute to a Company's score must be explicitly set. Negative numbers are valid if you want to subtract from a Company's score based on a Contact submitting a Form. If the Contact isn't tracked and the Form doesn't include a field mapped to Company or Company Name - on the Company object - the Company has no Points awarded." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing the add to Company score Form action." -msgstr "" - -#: ../components/forms.rst:285 -msgid "**Adjust Contact's Points**: this action allows you to add, subtract, multiply or divide a Contact's score. Select the operator and the amount to change the Points by - for example: add 10, subtract 5, multiply by 3, divide by 2. If the Form is collecting information which doesn't identify the Contact, Mautic saves the Points to the anonymous Contact record. If that anonymous Contact record converts to or merges with a know Contact record based on some identifying event such as a Form submission, the Points stay with the Contact." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing the adjust Contact score Form action." -msgstr "" - -#: ../components/forms.rst:291 -msgid "**Modify Contact's Segments**: this action allows you to change a Contact's Segment membership when they submit a Form. Type in the name of the Segment to add the Contact to or remove the Contact from. You can use both fields at the same time, and can include multiple Segments in either or both fields." -msgstr "" - -#: ../components/forms.rst:293 -msgid "Dynamic Segments based on filters update based on information in the Contact record automatically - you don't need add them to the Segment in a Form action." -msgstr "" - -#: ../components/forms.rst:295 -msgid "Typically you would use a Form action to populate static Segments - Segments which don't have any filters set. An example of when you might want to remove a Contact from a Segment in a Form action is for an event registration. You can build a filter-based Segment for the invitation Campaign, but once the Contact submits the registration Form you remove them from that Segment and added to a Segment for event attendees, so that they don't receive any more invitation Emails." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing the modify Contact's Segments Form action." -msgstr "" - -#: ../components/forms.rst:301 -msgid "**Modify Contact's Tags**: if you use Tags in Mautic, you might want to add or remove Tags from a Contact following a Form submission. To add or remove a Tag you have used before, select the Tag from the list displayed when clicking into the field. To find a Tag, start to type the name in the box. To add a new Tag, type the full name and press Enter on your keyboard to save the Tag." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing the modify Contact's Tags Form action." -msgstr "" - -#: ../components/forms.rst:307 -msgid "**Record UTM Tags**: if the Page your Form is on has UTM tags, whether it's a Mautic Landing Page or an external website, Mautic can record those UTM Tags and save them to the Contact record for reporting. This is useful if you want to run Reports on where your new Contacts and Form submissions are originating from." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing the record UTM Tags Form action." -msgstr "" - -#: ../components/forms.rst:315 -msgid "**Remove Contact from Do Not Contact list**: this Form action allows you to remove a Contact from the Do Not Contact list when they submit a Form. Use this if a Contact has at some time unsubscribed from your Email list, and by filling out the Form, are giving you permission to Email them again." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing the remove from Do Not Contact list Form action." -msgstr "" - -#: ../components/forms.rst:323 -msgid "**Download an Asset**: this option triggers an immediate download of the selected file when the Contact submits the Form. If you use Categories to organize your Assets, you can elect to have them download the most recently published Asset in a selected Category. If you prefer, you can link to a specific Asset." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing the download an Asset Form action." -msgstr "" - -#: ../components/forms.rst:329 -msgid "**POST results to another Form**: use this option to connect your Mautic Form with some other Form. You may have Forms in other tools which you use for tracking and reporting, or back-end Forms triggering software instance creation." -msgstr "" - -#: ../components/forms.rst:331 -msgid "Enter the URL where the Form should post to, and Email address/s for anyone who should receive error notifications. If the Form you are posting to is behind a firewall, also enter the authorization header. If the field aliases - machine names - for any fields don't match, enter the alias the other Form uses for any fields on the Mautic Form." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing the post to another Form action." -msgstr "" - -#: ../components/forms.rst:337 -msgid "**Push Contact to Integration**: once a Contact submits the Form, you may need to push them into another piece of software you are using for Contact management - such as a CRM. Ensure that the Plugin you want to use to push the Contacts is already configured and published, then select it in the dropdown field." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing the push to Integration Form action." -msgstr "" - -#: ../components/forms.rst:343 -msgid "**Send Email to Contact**: to directly Email the Contact after they submit the Form, use this option. Select a Template Email from the list, or click New Email to build a new one. After selecting an Email, you can also make edits to the Email in a popup window and preview the Email." -msgstr "" - -#: ../components/forms.rst:None -#: ../components/forms.rst:None -msgid "Screenshot showing the send Email to User Form action." -msgstr "" - -#: ../components/forms.rst:349 -msgid "**Send Email to User**: to Email an internal User of Mautic after a Contact submits a Form. Select the Mautic User from the dropdown. Similar to the Send Email to Contact option, select the Template Email or create a new one. Mautic replaces any tokens in the display with the data from the Contact, not the User." -msgstr "" - -#: ../components/forms.rst:355 -msgid "**Send Form results**: this feature is commonly used for the purposes of a notification when a Contact submits a Form. It can also send a notification to the Contact of the data provided. Be sure to customize the subject line to state which Form the submission relates to. The Reply to Contact option sets the ``reply-to`` address to the Contact's address, so that if the notification is sent to your team, replying will go to the Contact automatically." -msgstr "" - -#: ../components/forms.rst:357 -msgid "If you have Contact Owners set in Mautic, you can also send the notification directly to the Contact's owner. It's also possible to send a copy of the Email to the Contact." -msgstr "" - -#: ../components/forms.rst:359 -msgid "You can style the message itself as you like, and you can click to insert the submitted values from the Form using tokens. You must add the fields to the Form before creating the action. If adding new fields after creating the Form action, edit the Form action and add the new tokens to the Email." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing the send Form results action." -msgstr "" - -#: ../components/forms.rst:368 -msgid "Adding Forms to Pages" -msgstr "" - -#: ../components/forms.rst:372 -msgid "There are several ways to add your Mautic Forms to Landing Pages or Websites." -msgstr "" - -#: ../components/forms.rst:377 -msgid "Shortcodes" -msgstr "" - -#: ../components/forms.rst:381 -msgid "When working with Mautic Landing Pages or common Content Management Systems (CMS) including **Drupal**, **Joomla!** or **WordPress**, you can use a shortcode. In each case, replace ``ID#`` with the Mautic Form's ID number, found in the list of Forms or when viewing or editing a Form, the ID is at the end of the URL. This option uses JavaScript, which means that your embedded Form is always up to date with any changes made on your Mautic Form." -msgstr "" - -#: ../components/forms.rst:383 -msgid "**Mautic Landing Page**: ``{form= ID#}``" -msgstr "" - -#: ../components/forms.rst:384 -msgid "**Drupal 7.x**: ``{mauticform id =ID# width=300 px height=300 px}`` - be sure to change the width and height to the appropriate size for your website." -msgstr "" - -#: ../components/forms.rst:387 -msgid "This shortcode doesn't work for Drupal 8.x - it's recommended to use the Automatic Copy option instead." -msgstr "" - -#: ../components/forms.rst:389 -msgid "**Joomla!**: ``{mauticform ID#}``" -msgstr "" - -#: ../components/forms.rst:390 -msgid "**WordPress**: ``[mautic type=\"form\" id=ID#]``" -msgstr "" - -#: ../components/forms.rst:393 -msgid "Automatic copy" -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing the options for embedding a Mautic Form." -msgstr "" - -#: ../components/forms.rst:399 -msgid "The Automatic option for embedding Mautic Forms uses JavaScript and ensures that the Forms on your website are always up to date with what you have set in Mautic. If you make changes to the Form in Mautic, you don't have to worry about re-copying the Form code everywhere you use the Form. Features including auto-fill and progressive profiling **only** works with the Automatic option." -msgstr "" - -#: ../components/forms.rst:402 -#: ../components/forms.rst:428 -msgid "Before copying the code to embed your Mautic Forms, ensure that you are on the correct domain name - not a staging area or internal reference for example - as the Form embed code references the URL." -msgstr "" - -#: ../components/forms.rst:405 -msgid "Via JavaScript" -msgstr "" - -#: ../components/forms.rst:407 -msgid "Other than using shortcodes with a CMS Plugin, this is the recommended method for embedding your Mautic Forms. Copy the line of code in the box and paste it into your website where you want the Form to display." -msgstr "" - -#: ../components/forms.rst:412 -msgid "Via IFrame" -msgstr "" - -#: ../components/forms.rst:416 -msgid "IFrames can be more difficult to use, and blocking by browsers is more likely, however there are sometimes where using an IFrame is preferable. Be sure to adjust the width and height for the space required to fit the Form. The visitor may need to scroll within the IFrame depending on the resolution of their browser. It's possible to display an error message in the event that the visitor's browser doesn't support IFrames, by editing the text between the ``

`` and ``

`` tags before copying the code and pasting it into your website." -msgstr "" - -#: ../components/forms.rst:419 -msgid "Manual copy" -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing the options for manually embedding a Mautic Form." -msgstr "" - -#: ../components/forms.rst:425 -msgid "The manual copy option does provide more flexibility to extend Forms with JavaScript snippets and custom styling, however it's a manual process and any changes made within Mautic after copying the code won't be automatically reflected on your website unless you re-copy and paste the new HTML code." -msgstr "" - -#: ../components/forms.rst:430 -msgid "Copy the JavaScript code in the first box, and paste it into the head or body of your page. If you have multiple Mautic Forms on the same page, add this once only." -msgstr "" - -#: ../components/forms.rst:431 -msgid "Copy the HTML code in the second box, and paste it where you wish to display the Form." -msgstr "" - -#: ../components/forms.rst:432 -msgid "If you have Render Style set to Yes in the Form, the code includes the styling. If you have Render Style set to No, there is no styling included with the code, and the Form styling comes from the CSS from your website." -msgstr "" - -#: ../components/forms.rst:437 -msgid "Creating conditional Form fields" -msgstr "" - -#: ../components/forms.rst:441 -msgid "Mautic allows you to create conditional fields within Forms. This allows you to manage a set of dependencies between fields, so that the fields display only with certain conditions." -msgstr "" - -#: ../components/forms.rst:443 -msgid "To create conditional fields, you must first create any :doc:`/contacts/custom_fields` and use these fields within a Form." -msgstr "" - -#: ../components/forms.rst:448 -msgid "Creating Custom Fields" -msgstr "" - -#: ../components/forms.rst:452 -msgid "Using an example of wanting to show specific types of car based on the manufacturer, you would create the following custom fields:" -msgstr "" - -#: ../components/forms.rst:454 -msgid "**Car manufacturer**: this field should be of the Select data type. In this example, the options for this field are Ford, Nissan, Peugeot, and Fiat." -msgstr "" - -#: ../components/forms.rst:455 -msgid "**Ford cars**: this field should be of the Select - Multiple data type. In this example, the available options for this field are Focus, Mustang, Fiesta, and Galaxy." -msgstr "" - -#: ../components/forms.rst:458 -msgid "Adding conditional fields to a Mautic Form" -msgstr "" - -#: ../components/forms.rst:460 -msgid "Once you have created the required Custom Fields, add the parent field to the Form as detailed previously, and add the relevant information in the tabs." -msgstr "" - -#: ../components/forms.rst:463 -msgid "When using conditional fields, only ``Select``, ``Select - Multiple`` and ``Boolean`` field types are valid as the parent field." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing the parent field for a conditional field on a Mautic Form" -msgstr "" - -#: ../components/forms.rst:469 -msgid "If you have defined the values in the Custom Field, turn the first switch to Yes to use those values. Otherwise, create the labels and values in the Properties tab. You can also associate the Form field with a Contact field where appropriate." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing the configuration of a parent field" -msgstr "" - -#: ../components/forms.rst:475 -msgid "Once saved, an option displays to add a conditional field." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing option to add a field based on the value of an existing field" -msgstr "" - -#: ../components/forms.rst:481 -msgid "In this example, select the ``Checkbox Group`` option, and under the Condition tab, choose ``including`` and ``Ford``." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing selection of parent field" -msgstr "" - -#: ../components/forms.rst:487 -msgid "This means that when the visitor selects Ford, the Form displays this field." -msgstr "" - -#: ../components/forms.rst:489 -msgid "There are two options:" -msgstr "" - -#: ../components/forms.rst:491 -msgid "**including**: if you want the child field to appear only if the selected value on the Form for the parent field **does match** the value/s specified" -msgstr "" - -#: ../components/forms.rst:492 -msgid "**excluding**: if you want the child field to appear only if the selected value on the Form for the parent field **doesn't match** the value/s specified" -msgstr "" - -#: ../components/forms.rst:494 -msgid "It's possible to set Any value to Yes, then the child field shows for any value of the parent field. This removes the filters to select an option." -msgstr "" - -#: ../components/forms.rst:496 -msgid "Map the field to a Contact field as appropriate, and under the Properties tab, either select to use the options in the Custom Field, or specify labels and options." -msgstr "" - -#: ../components/forms.rst:498 -msgid "Once saved, the Form displays the conditional field nested underneath the parent field." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing child field nested underneath the parent field" -msgstr "" - -#: ../components/forms.rst:505 -msgid "Blocking Form submissions from specified domains" -msgstr "" - -#: ../components/forms.rst:507 -msgid "Sometimes it's necessary to block certain domains from submitting Forms - for example to restrict access to proprietary content and reduce the volume of unqualified leads." -msgstr "" - -#: ../components/forms.rst:510 -msgid "Configuring blocked domains" -msgstr "" - -#: ../components/forms.rst:512 -msgid "To configure globally blocked domains - applying to all Forms in your Mautic instance - go to the Forms section in :doc:`/configuration/settings`." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing global domain blocking" -msgstr "" - -#: ../components/forms.rst:518 -msgid "Specify domains, one per line, using either full Email addresses or entire domains using an asterisk before the domain name, which acts as a wildcard. Ensure you save your changes." -msgstr "" - -#: ../components/forms.rst:522 -msgid "Applying domain name filtering to a Form" -msgstr "" - -#: ../components/forms.rst:524 -msgid "To apply domain name filtering on a Mautic Form, add an Email field to the Form - after setting up the domain exclusions in the previous step - and under the Validation tab, set the Domain name submission filter switch to Yes." -msgstr "" - -#: ../components/forms.rst:None -msgid "Screenshot showing domain blocking used in a Mautic Form" -msgstr "" - -#: ../components/forms.rst:530 -msgid "It's advised to provide a helpful message to display if the visitor tries to use an Email address from a blocked domain, to help them understand what the problem is." -msgstr "" - -#: ../components/landing_pages.rst:4 -msgid "Landing Pages" -msgstr "" - -#: ../components/landing_pages.rst:7 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/docs_translations/configuration.pot b/docs/docs_translations/configuration.pot deleted file mode 100644 index b3ecbc20..00000000 --- a/docs/docs_translations/configuration.pot +++ /dev/null @@ -1,1959 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../configuration/command_line_interface.rst:4 -msgid "Command Line Interface (CLI) commands" -msgstr "" - -#: ../configuration/command_line_interface.rst:8 -msgid "Mautic may require you to use the command line (CLI). Listed below are the available CLI commands." -msgstr "" - -#: ../configuration/command_line_interface.rst:12 -msgid "You can find this list (and others - for example commands relating to Doctrine and other vendors) by running this command: ``bin/console``" -msgstr "" - -#: ../configuration/command_line_interface.rst:14 -msgid "You must be in the Mautic root directory to run the CLI commands." -msgstr "" - -#: ../configuration/command_line_interface.rst:16 -msgid "**Format**: command [options] [arguments]" -msgstr "" - -#: ../configuration/command_line_interface.rst:19 -#: ../configuration/command_line_interface.rst:27 -msgid "Options" -msgstr "" - -#: ../configuration/command_line_interface.rst:28 -#: ../configuration/command_line_interface.rst:78 -#: ../configuration/command_line_interface.rst:172 -msgid "Description" -msgstr "" - -#: ../configuration/command_line_interface.rst:29 -msgid "-h, \\--help" -msgstr "" - -#: ../configuration/command_line_interface.rst:30 -msgid "Display this help message" -msgstr "" - -#: ../configuration/command_line_interface.rst:31 -msgid "-q, \\--quiet" -msgstr "" - -#: ../configuration/command_line_interface.rst:32 -msgid "Do not output any message" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "V, \\--version" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "\\--ansi" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "\\--no-ansi" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "Display this app version" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "Force ANSI output" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "Disable ANSI output" -msgstr "" - -#: ../configuration/command_line_interface.rst:39 -msgid "-n, \\--no-interaction" -msgstr "" - -#: ../configuration/command_line_interface.rst:40 -msgid "Do not ask any interactive question" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "-s, \\--shell" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "\\--process-isolation" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "Launch the shell." -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "Launch commands from shell as a separate process." -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "-e, \\--env=ENV" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "\\--no-debug" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "The Environment name. [default: \"prod\"]" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "Switches off debug mode." -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "-v" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "-vv" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "-vvv" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "\\--verbose" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "Increase the verbosity of messages:" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "1. for normal output," -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "2. for more verbose output and" -msgstr "" - -#: ../configuration/command_line_interface.rst:0 -msgid "3. for debug" -msgstr "" - -#: ../configuration/command_line_interface.rst:62 -msgid "Mautic commands" -msgstr "" - -#: ../configuration/command_line_interface.rst:63 -msgid "These are the commands you may need to use in relation to your Mautic instance. Add a ``bin/console`` before Mautic command." -msgstr "" - -#: ../configuration/command_line_interface.rst:65 -msgid "**Example**" -msgstr "" - -#: ../configuration/command_line_interface.rst:77 -#: ../configuration/command_line_interface.rst:171 -msgid "Command" -msgstr "" - -#: ../configuration/command_line_interface.rst:79 -msgid "mautic:assets:generate" -msgstr "" - -#: ../configuration/command_line_interface.rst:80 -msgid "Combines and minifies Asset files (CSS/JS) from each bundle into single production files" -msgstr "" - -#: ../configuration/command_line_interface.rst:81 -msgid "mautic:broadcasts:send" -msgstr "" - -#: ../configuration/command_line_interface.rst:82 -msgid "Process Contacts pending to receive a Channel broadcast." -msgstr "" - -#: ../configuration/command_line_interface.rst:83 -msgid "mautic:campaigns:execute" -msgstr "" - -#: ../configuration/command_line_interface.rst:84 -msgid "Execute specific scheduled events." -msgstr "" - -#: ../configuration/command_line_interface.rst:85 -msgid "mautic:campaigns:messagequeue" -msgstr "" - -#: ../configuration/command_line_interface.rst:86 -#: ../configuration/command_line_interface.rst:88 -msgid "Process sending of messages queue, you can also use the alias of ``mautic:messages:send``." -msgstr "" - -#: ../configuration/command_line_interface.rst:87 -msgid "mautic:campaigns:messages" -msgstr "" - -#: ../configuration/command_line_interface.rst:89 -msgid "mautic:campaigns:rebuild" -msgstr "" - -#: ../configuration/command_line_interface.rst:90 -msgid "Rebuild Campaigns based on Contact Segments, you can also use the alias of ``mautic:messages:update``." -msgstr "" - -#: ../configuration/command_line_interface.rst:91 -msgid "mautic:campaigns:trigger" -msgstr "" - -#: ../configuration/command_line_interface.rst:92 -msgid "Trigger timed events for published Campaigns." -msgstr "" - -#: ../configuration/command_line_interface.rst:93 -msgid "mautic:campaigns:update" -msgstr "" - -#: ../configuration/command_line_interface.rst:94 -msgid "Rebuild Campaigns based on Contact Segments, you can also use the alias of ``mautic:messages:rebuild``." -msgstr "" - -#: ../configuration/command_line_interface.rst:95 -msgid "mautic:campaigns:validate" -msgstr "" - -#: ../configuration/command_line_interface.rst:96 -msgid "Validate if a Contact has been inactive for a decision and execute events if so." -msgstr "" - -#: ../configuration/command_line_interface.rst:97 -msgid "mautic:citrix:sync" -msgstr "" - -#: ../configuration/command_line_interface.rst:98 -msgid "Synchronizes registrant information from Citrix products" -msgstr "" - -#: ../configuration/command_line_interface.rst:99 -msgid "mautic:cache:clear" -msgstr "" - -#: ../configuration/command_line_interface.rst:100 -msgid "Clears Mautic cache, by using this command, you will erase the 10-minute Mautic cache, which contains things like segment counts and data for dashboard widgets." -msgstr "" - -#: ../configuration/command_line_interface.rst:101 -msgid "mautic:contacts:deduplicate" -msgstr "" - -#: ../configuration/command_line_interface.rst:102 -msgid "Merge Contacts based on same unique identifiers" -msgstr "" - -#: ../configuration/command_line_interface.rst:103 -msgid "mautic:custom-field:create-column" -msgstr "" - -#: ../configuration/command_line_interface.rst:104 -msgid "Creates the actual column in the table" -msgstr "" - -#: ../configuration/command_line_interface.rst:105 -msgid "mautic:email:fetch" -msgstr "" - -#: ../configuration/command_line_interface.rst:106 -msgid "Fetch and process monitored Email, you can also use the alias of ``mautic:email:fetch``." -msgstr "" - -#: ../configuration/command_line_interface.rst:107 -msgid "mautic:emails:send" -msgstr "" - -#: ../configuration/command_line_interface.rst:108 -msgid "Processes mail queue" -msgstr "" - -#: ../configuration/command_line_interface.rst:109 -msgid "mautic:import" -msgstr "" - -#: ../configuration/command_line_interface.rst:110 -msgid "If the CSV import is configured to run in background then this command will pick up the pending import jobs and imports the data from CSV files to Mautic." -msgstr "" - -#: ../configuration/command_line_interface.rst:111 -msgid "mautic:integration:fetchleads" -msgstr "" - -#: ../configuration/command_line_interface.rst:112 -msgid "Fetch Contacts from Integration, you can also use the alias of ``mautic:integration:synccontacts``." -msgstr "" - -#: ../configuration/command_line_interface.rst:113 -msgid "mautic:integration:pipedrive:fetch" -msgstr "" - -#: ../configuration/command_line_interface.rst:114 -msgid "Pulls the data from Pipedrive and sends it to Mautic" -msgstr "" - -#: ../configuration/command_line_interface.rst:115 -msgid "mautic:integration:pipedrive:push" -msgstr "" - -#: ../configuration/command_line_interface.rst:116 -msgid "Pushes the data from Mautic to Pipedrive" -msgstr "" - -#: ../configuration/command_line_interface.rst:117 -msgid "mautic:integration:pushactivity" -msgstr "" - -#: ../configuration/command_line_interface.rst:118 -msgid "Push Contact activity to Integration, you can also use the alias of ``mautic:integration:pushleadactivity``." -msgstr "" - -#: ../configuration/command_line_interface.rst:119 -msgid "mautic:integration:pushleadactivity" -msgstr "" - -#: ../configuration/command_line_interface.rst:120 -msgid "Push Contact activity to Integration, you can also use the alias of ``mautic:integration:pushactivity``." -msgstr "" - -#: ../configuration/command_line_interface.rst:121 -msgid "mautic:integration:synccontacts" -msgstr "" - -#: ../configuration/command_line_interface.rst:122 -msgid "Fetch Contacts from Integration, you can also use the alias of ``mautic:integration:fetchleads``." -msgstr "" - -#: ../configuration/command_line_interface.rst:123 -msgid "mautic:install:data" -msgstr "" - -#: ../configuration/command_line_interface.rst:124 -msgid "Installs data" -msgstr "" - -#: ../configuration/command_line_interface.rst:125 -msgid "mautic:iplookup:download" -msgstr "" - -#: ../configuration/command_line_interface.rst:126 -msgid "Fetch remote datastores for IP lookup services that leverage local lookups." -msgstr "" - -#: ../configuration/command_line_interface.rst:127 -msgid "mautic:maintenance:cleanup" -msgstr "" - -#: ../configuration/command_line_interface.rst:128 -msgid "Cleans up older data." -msgstr "" - -#: ../configuration/command_line_interface.rst:129 -msgid "mautic:messages:send" -msgstr "" - -#: ../configuration/command_line_interface.rst:130 -msgid "Process sending of messages queue, you can also use the alias of ``mautic:campaigns:messagequeue`` and ``mautic:campaigns:messages``." -msgstr "" - -#: ../configuration/command_line_interface.rst:131 -msgid "doctrine:migrations:generate" -msgstr "" - -#: ../configuration/command_line_interface.rst:132 -msgid "Generate a blank migration class." -msgstr "" - -#: ../configuration/command_line_interface.rst:133 -msgid "mautic:plugins:install" -msgstr "" - -#: ../configuration/command_line_interface.rst:134 -msgid "Installs Plugins, you can also use the alias of ``mautic:plugins:reload``." -msgstr "" - -#: ../configuration/command_line_interface.rst:135 -msgid "mautic:plugins:reload" -msgstr "" - -#: ../configuration/command_line_interface.rst:136 -msgid "Reloads Plugins, you can also use the alias of ``mautic:plugins:install`` or ``mautic:plugins:update``." -msgstr "" - -#: ../configuration/command_line_interface.rst:137 -msgid "mautic:plugins:update" -msgstr "" - -#: ../configuration/command_line_interface.rst:138 -msgid "Updates Plugins, you can also use the alias of ``mautic:plugins:reload``." -msgstr "" - -#: ../configuration/command_line_interface.rst:139 -msgid "mautic:queue:process" -msgstr "" - -#: ../configuration/command_line_interface.rst:140 -msgid "Process queues" -msgstr "" - -#: ../configuration/command_line_interface.rst:141 -msgid "mautic:reports:scheduler" -msgstr "" - -#: ../configuration/command_line_interface.rst:142 -msgid "Processes scheduler for Report's export" -msgstr "" - -#: ../configuration/command_line_interface.rst:143 -msgid "mautic:segments:rebuild" -msgstr "" - -#: ../configuration/command_line_interface.rst:144 -msgid "Update Contacts in smart Segments based on new Contact data, you can also use the alias of ``mautic:segments:update``." -msgstr "" - -#: ../configuration/command_line_interface.rst:145 -msgid "mautic:segments:update" -msgstr "" - -#: ../configuration/command_line_interface.rst:146 -msgid "Update Contacts in smart Segments based on new Contact data, , you can also use the alias of ``mautic:segments:rebuild``." -msgstr "" - -#: ../configuration/command_line_interface.rst:147 -msgid "mautic:theme:json-config" -msgstr "" - -#: ../configuration/command_line_interface.rst:148 -msgid "Converts Theme config to JSON from PHP" -msgstr "" - -#: ../configuration/command_line_interface.rst:149 -msgid "mautic:unusedip:delete" -msgstr "" - -#: ../configuration/command_line_interface.rst:150 -msgid "Deletes IP addresses that aren't used in any other database table" -msgstr "" - -#: ../configuration/command_line_interface.rst:151 -msgid "mautic:update:apply" -msgstr "" - -#: ../configuration/command_line_interface.rst:152 -msgid "Updates the Mautic app." -msgstr "" - -#: ../configuration/command_line_interface.rst:153 -msgid "mautic:update:find" -msgstr "" - -#: ../configuration/command_line_interface.rst:154 -msgid "Fetches updates for Mautic" -msgstr "" - -#: ../configuration/command_line_interface.rst:155 -msgid "mautic:webhooks:process" -msgstr "" - -#: ../configuration/command_line_interface.rst:156 -msgid "Process queued Webhook payloads" -msgstr "" - -#: ../configuration/command_line_interface.rst:157 -msgid "social:monitor:twitter:hashtags" -msgstr "" - -#: ../configuration/command_line_interface.rst:158 -msgid "Looks at the monitoring records and finds hashtags." -msgstr "" - -#: ../configuration/command_line_interface.rst:159 -msgid "social:monitor:twitter:mentions" -msgstr "" - -#: ../configuration/command_line_interface.rst:160 -msgid "Searches for mentioned tweets" -msgstr "" - -#: ../configuration/command_line_interface.rst:165 -msgid "Doctrine commands" -msgstr "" - -#: ../configuration/command_line_interface.rst:173 -msgid "doctrine:fixtures:load" -msgstr "" - -#: ../configuration/command_line_interface.rst:174 -msgid "Installs Mautic sample data, overwriting existing data." -msgstr "" - -#: ../configuration/cron_jobs.rst:4 -msgid "Cron jobs" -msgstr "" - -#: ../configuration/cron_jobs.rst:10 -msgid "Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are using the legacy Mautic 2.x series you should replace this with the older version, ``app/console``" -msgstr "" - -#: ../configuration/cron_jobs.rst:12 -msgid "Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks such as updating Contacts or Campaigns, executing Campaign Actions, sending Emails, and more. You must manually add the required cron jobs to your server. Most web hosts provide a means to add cron jobs either through SSH, cPanel, or another custom panel. Please consult your host's documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../configuration/cron_jobs.rst:17 -msgid "If you're new to Linux or Cron Jobs, then the Apache Foundation has :xref:`an excellent guide` which you should read before asking questions via the various support Channels." -msgstr "" - -#: ../configuration/cron_jobs.rst:19 -msgid "When setting up cron jobs, you must choose how often you want the cron jobs to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes and may even override the scheduled times to meet these restrictions. Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../configuration/cron_jobs.rst:21 -msgid "**It's HIGHLY recommended that you stagger the following required jobs so as to not run the exact same minute.**" -msgstr "" - -#: ../configuration/cron_jobs.rst:23 -msgid "For instance:" -msgstr "" - -#: ../configuration/cron_jobs.rst:32 -msgid "Required" -msgstr "" - -#: ../configuration/cron_jobs.rst:34 -msgid "Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../configuration/cron_jobs.rst:37 -msgid "Segment cron jobs" -msgstr "" - -#: ../configuration/cron_jobs.rst:39 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../configuration/cron_jobs.rst:45 -#: ../configuration/cron_jobs.rst:62 -msgid "By default, the script processes Contacts in batches of 300. If this is too many for your server's resources, use the option ``--batch-limit=X`` replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../configuration/cron_jobs.rst:47 -#: ../configuration/cron_jobs.rst:64 -msgid "You can also limit the number of Contacts to process per script execution using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../configuration/cron_jobs.rst:52 -msgid "Campaign cron jobs" -msgstr "" - -#: ../configuration/cron_jobs.rst:56 -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../configuration/cron_jobs.rst:66 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../configuration/cron_jobs.rst:72 -msgid "By default, the script processes Contacts in batches of 100. If this is too many for your server's resources, use the option ``--batch-limit=X`` replacing X with the number of events to process each batch." -msgstr "" - -#: ../configuration/cron_jobs.rst:74 -msgid "You can also limit the number of Contacts to process per script execution using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../configuration/cron_jobs.rst:78 -msgid "**To send frequency rules rescheduled marketing Campaign messages:** Messages marked as *Marketing Messages* - such as Emails as part of a marketing Campaign - get held in a message queue IF frequency rules are setup as either system wide or per Contact. To process this queue and reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../configuration/cron_jobs.rst:82 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../configuration/cron_jobs.rst:86 -msgid "that these messages are only added to the queue when frequency rules apply either system wide or per Contact." -msgstr "" - -#: ../configuration/cron_jobs.rst:89 -msgid "Optional" -msgstr "" - -#: ../configuration/cron_jobs.rst:91 -msgid "Depending on your server configuration, you can set up additional cron jobs that are optional for tasks such as sending Emails, importing Contacts, and more. The optional cron jobs are as follows:" -msgstr "" - -#: ../configuration/cron_jobs.rst:96 -msgid "Process Email queue cron job" -msgstr "" - -#: ../configuration/cron_jobs.rst:100 -msgid "If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../configuration/cron_jobs.rst:109 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../configuration/cron_jobs.rst:113 -msgid "If you are using Bounce Management, set up the following command to fetch and process messages:" -msgstr "" - -#: ../configuration/cron_jobs.rst:122 -msgid "Social Monitoring cron job" -msgstr "" - -#: ../configuration/cron_jobs.rst:126 -msgid "If you are using Social Monitoring, add the following command to your cron configuration:" -msgstr "" - -#: ../configuration/cron_jobs.rst:135 -msgid "Import Contacts cron job" -msgstr "" - -#: ../configuration/cron_jobs.rst:139 -msgid "To import an especially large number of Contacts or Companies in the background, use the following command:" -msgstr "" - -#: ../configuration/cron_jobs.rst:145 -msgid "The time taken for this command to execute depends on the number of Contacts in the CSV file. However, on successful completion of the import operation, a notification appears on the Mautic dashboard." -msgstr "" - -#: ../configuration/cron_jobs.rst:148 -msgid "Webhooks cron job" -msgstr "" - -#: ../configuration/cron_jobs.rst:150 -msgid "If the Mautic configuration settings include Webhook batch processing, use the following command to send the payloads:" -msgstr "" - -#: ../configuration/cron_jobs.rst:161 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../configuration/cron_jobs.rst:165 -msgid "Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported License` and thus Mautic can't include it within the installation package. It's possible to download the database manually through Mautic's Configuration or automatically using the following script. MaxMind updates their database the first Tuesday of the month." -msgstr "" - -#: ../configuration/cron_jobs.rst:175 -msgid "Clean up old data cron job" -msgstr "" - -#: ../configuration/cron_jobs.rst:177 -msgid "Clean up a Mautic installation by purging old data. Note that you can't purge some types of data within Mautic. Currently supported are audit log entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use ``--dry-run`` to view the number of records impacted before making any changes." -msgstr "" - -#: ../configuration/cron_jobs.rst:180 -msgid "Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../configuration/cron_jobs.rst:182 -msgid "**This permanently deletes data. Be sure to verify database backups before using as appropriate.**" -msgstr "" - -#: ../configuration/cron_jobs.rst:189 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../configuration/cron_jobs.rst:191 -msgid "MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../configuration/cron_jobs.rst:193 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../configuration/cron_jobs.rst:195 -msgid "It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../configuration/cron_jobs.rst:201 -msgid "This command downloads the database of Do Not Sell IP addresses from MaxMind." -msgstr "" - -#: ../configuration/cron_jobs.rst:207 -msgid "This command finds data in the database loaded from MaxMind's Do Not Sell IP addresses and deletes the data." -msgstr "" - -#: ../configuration/cron_jobs.rst:212 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../configuration/cron_jobs.rst:216 -msgid "Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled broadcasts for Channel communications. The current only implementation of this is for Segment Emails. Instead of requiring a manual send and wait with the browser window open while AJAX batches over the send, it's possible to use a command to initiate the process." -msgstr "" - -#: ../configuration/cron_jobs.rst:218 -msgid "The caveat for this is that the Email must have a published up date and be currently published - this is to help prevent any unintentional Email broadcasts. Just as it was with the manual/AJAX process the message is only sent to Contacts who haven't already received the specific communication. This command sends messages to Contacts added to the source Segments later, so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../configuration/cron_jobs.rst:225 -msgid "Command parameters:" -msgstr "" - -#: ../configuration/cron_jobs.rst:227 -msgid "``--channel=email`` what Channel to execute. Defaults to all Channels if none provided." -msgstr "" - -#: ../configuration/cron_jobs.rst:229 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../configuration/cron_jobs.rst:231 -msgid "``--limit=X`` is how many Contacts to pull from the database for processing, set to 100 by default. Using this flag each time the cron fires, it processes X Contacts. The next time the cron job runs, it processes the following X Contacts, and so on." -msgstr "" - -#: ../configuration/cron_jobs.rst:233 -msgid "``--batch=X`` controls how many Emails processed in each batch. This can be different for every provider. For example, Mautic has API connection to SparkPost. Their API can send - at present - 1000 Emails per call. Therefore the batch should be 1000 for the fastest sending speed with this provider. Many SMTP providers can't handle 1000 emails in one batch, so this would need to be lower." -msgstr "" - -#: ../configuration/cron_jobs.rst:235 -msgid "``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email sending by smaller chunks, by specifying contact ID ranges. If those ranges won't overlap, this allows you to run several broadcast commands in parallel." -msgstr "" - -#: ../configuration/cron_jobs.rst:240 -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../configuration/cron_jobs.rst:244 -msgid "Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled Reports." -msgstr "" - -#: ../configuration/cron_jobs.rst:252 -msgid "for releases prior to 1.1.3, it's required to append ``--env=prod`` to the cron job command to ensure commands execute correctly." -msgstr "" - -#: ../configuration/cron_jobs.rst:257 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../configuration/cron_jobs.rst:261 -msgid "To perform synchronization of all Integrations and to manage Plugins, use the cron job commands in this section." -msgstr "" - -#: ../configuration/cron_jobs.rst:263 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../configuration/cron_jobs.rst:269 -#: ../configuration/cron_jobs.rst:281 -msgid "or" -msgstr "" - -#: ../configuration/cron_jobs.rst:275 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../configuration/cron_jobs.rst:287 -msgid "These commands work with all available Plugins. To avoid performance issues when using multiple Integrations, you must specify the name of the Integration by adding the ``-integration`` suffix to the command. For instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../configuration/cron_jobs.rst:294 -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../configuration/cron_jobs.rst:302 -msgid "you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../configuration/cron_jobs.rst:306 -msgid "Tips & troubleshooting" -msgstr "" - -#: ../configuration/cron_jobs.rst:308 -msgid "If your environment provides a command-line specific build of PHP, often called ``php-cli``, you may want to use that instead of ``php`` as it has a cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` command might be setup to discard the command-line parameters to ``console``, in which case you must use ``php-cli`` to make the cron jobs work." -msgstr "" - -#: ../configuration/cron_jobs.rst:310 -msgid "To assist in troubleshooting cron issues, you can pipe the output of each cron job to a specific file by adding something like ``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can look at the contents of the file to see the output." -msgstr "" - -#: ../configuration/cron_jobs.rst:312 -msgid "If an error is occurring when running run the cron job this file provides some insight, otherwise the file is empty or has some basic stats. The modification time of the file informs you of the last time the cron job ran. You can thus use this to determine whether the cron job is running successfully and on schedule." -msgstr "" - -#: ../configuration/cron_jobs.rst:314 -msgid "In addition it's recommended to enable the non-interactive mode together with the no-ansi mode when you run your commands using cron. This way you ensure, that you have proper timestamps in your log and the output is more readable." -msgstr "" - -#: ../configuration/cron_jobs.rst:316 -msgid "Example output" -msgstr "" - -#: ../configuration/cron_jobs.rst:326 -msgid "If you have SSH access, try to run the command directly to Select for errors. If there is nothing printed from either in a SSH session or in the cron output, verify in the server's logs. If you see similar errors to ``'Warning: Invalid argument supplied for foreach()' in /vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``, you either need to use ``php-cli`` instead of ``php`` or try using ``php -d register_argc_argv=On``. `" -msgstr "" - -#: ../configuration/cron_jobs.rst:329 -msgid "Tracking script" -msgstr "" - -#: ../configuration/cron_jobs.rst:331 -msgid "After installation and setup of the :doc:`/configuration/cron_jobs` you're ready to begin tracking Contacts. You need to add a piece of JavaScript to the websites for each site you wish to track through Mautic." -msgstr "" - -#: ../configuration/cron_jobs.rst:333 -msgid "This is straightforward process, you can add this tracking script to your website template file, or install a Mautic Integration for the more common Content Management System platforms." -msgstr "" - -#: ../configuration/cron_jobs.rst:335 -msgid "Here is an example of the tracking JavaScript which you can access by clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../configuration/cron_jobs.rst:346 -msgid "You should replace the site URL, ``example.com/mautic`` with the URL to your Mautic instance in the example provided, but it's recommended to copy the whole code block from the tracking settings in your Mautic instance." -msgstr "" - -#: ../configuration/maxmind_license.rst:2 -msgid "MaxMind license" -msgstr "" - -#: ../configuration/maxmind_license.rst:4 -msgid "From the :xref:`2.16 release`, Mautic has supported using a license key to access the MaxMind IP lookup service." -msgstr "" - -#: ../configuration/maxmind_license.rst:8 -msgid "From the 3.2 release the format for the license key needs to be ``AccountID:Licensekey``. You can locate the Account ID directly preceding the license keys table." -msgstr "" - -#: ../configuration/maxmind_license.rst:10 -msgid "Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../configuration/maxmind_license.rst:12 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../configuration/maxmind_license.rst:14 -msgid "After signing up, verify your Email and follow the steps to access your :xref:`MaxMind Account`." -msgstr "" - -#: ../configuration/maxmind_license.rst:16 -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../configuration/maxmind_license.rst:None -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../configuration/maxmind_license.rst:22 -msgid "After logging in, under services click ``My License Key`` on the left hand side in the menu" -msgstr "" - -#: ../configuration/maxmind_license.rst:None -#: ../configuration/maxmind_license.rst:None -#: ../configuration/maxmind_license.rst:None -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../configuration/maxmind_license.rst:28 -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../configuration/maxmind_license.rst:None -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../configuration/maxmind_license.rst:34 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../configuration/maxmind_license.rst:None -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../configuration/maxmind_license.rst:40 -msgid "Copy the license key that you see on the screen and note down the Account ID preceding the license key table" -msgstr "" - -#: ../configuration/maxmind_license.rst:46 -msgid "Go to Mautic > Settings > Configuration > System Settings > Miscellaneous Settings and enter the license key into the \"IP lookup service authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../configuration/maxmind_license.rst:52 -msgid "Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database to your Mautic instance." -msgstr "" - -#: ../configuration/maxmind_license.rst:54 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" - -#: ../configuration/settings.rst:4 -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../configuration/settings.rst:9 -msgid "System settings" -msgstr "" - -#: ../configuration/settings.rst:12 -msgid "General settings" -msgstr "" - -#: ../configuration/settings.rst:15 -msgid "System defaults" -msgstr "" - -#: ../configuration/settings.rst:18 -msgid "CORS settings" -msgstr "" - -#: ../configuration/settings.rst:21 -msgid "Miscellaneous settings" -msgstr "" - -#: ../configuration/settings.rst:24 -msgid "Update settings" -msgstr "" - -#: ../configuration/settings.rst:27 -msgid "Theme settings" -msgstr "" - -#: ../configuration/settings.rst:30 -msgid "API settings" -msgstr "" - -#: ../configuration/settings.rst:33 -msgid "Asset settings" -msgstr "" - -#: ../configuration/settings.rst:36 -msgid "Campaign settings" -msgstr "" - -#: ../configuration/settings.rst:39 -msgid "Email settings" -msgstr "" - -#: ../configuration/settings.rst:42 -msgid "Mail send settings" -msgstr "" - -#: ../configuration/settings.rst:45 -msgid "Default frequency rule" -msgstr "" - -#: ../configuration/settings.rst:48 -msgid "Monitored inbox settings" -msgstr "" - -#: ../configuration/settings.rst:51 -msgid "Message settings" -msgstr "" - -#: ../configuration/settings.rst:54 -msgid "Unsubscribe settings" -msgstr "" - -#: ../configuration/settings.rst:57 -msgid "Form settings" -msgstr "" - -#: ../configuration/settings.rst:60 -msgid "Contact settings" -msgstr "" - -#: ../configuration/settings.rst:63 -msgid "Contact merge settings" -msgstr "" - -#: ../configuration/settings.rst:66 -msgid "Contact list settings" -msgstr "" - -#: ../configuration/settings.rst:69 -msgid "Import settings" -msgstr "" - -#: ../configuration/settings.rst:72 -msgid "Segment settings" -msgstr "" - -#: ../configuration/settings.rst:75 -msgid "Company settings" -msgstr "" - -#: ../configuration/settings.rst:78 -msgid "Notification settings" -msgstr "" - -#: ../configuration/settings.rst:81 -msgid "Campaign notification settings" -msgstr "" - -#: ../configuration/settings.rst:84 -msgid "Webhook notification settings" -msgstr "" - -#: ../configuration/settings.rst:87 -msgid "Landing page settings" -msgstr "" - -#: ../configuration/settings.rst:90 -msgid "Tracking settings" -msgstr "" - -#: ../configuration/settings.rst:93 -msgid "Mautic tracking settings" -msgstr "" - -#: ../configuration/settings.rst:96 -msgid "Facebook pixel" -msgstr "" - -#: ../configuration/settings.rst:99 -msgid "Google Analytics" -msgstr "" - -#: ../configuration/settings.rst:102 -msgid "Report settings" -msgstr "" - -#: ../configuration/settings.rst:105 -msgid "Text message settings" -msgstr "" - -#: ../configuration/settings.rst:108 -msgid "User/Authentication settings" -msgstr "" - -#: ../configuration/settings.rst:111 -msgid "SAML/SSO settings" -msgstr "" - -#: ../configuration/settings.rst:114 -msgid "Webhook settings" -msgstr "" - -#: ../configuration/settings.rst:117 -msgid "Social settings" -msgstr "" - -#: ../configuration/variables.rst:2 -msgid "Variables" -msgstr "" - -#: ../configuration/variables.rst:5 -msgid "Default Value" -msgstr "" - -#: ../configuration/variables.rst:7 -msgid "The default value - sometimes called Fallback Text - is specified after the ``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../configuration/variables.rst:9 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../configuration/variables.rst:12 -msgid "Contact fields" -msgstr "" - -#: ../configuration/variables.rst:14 -msgid "See :doc:`managing custom fields ` for more information." -msgstr "" - -#: ../configuration/variables.rst:20 -#: ../configuration/variables.rst:85 -#: ../configuration/variables.rst:107 -#: ../configuration/variables.rst:150 -#: ../configuration/variables.rst:171 -#: ../configuration/variables.rst:196 -#: ../configuration/variables.rst:219 -#: ../configuration/variables.rst:242 -#: ../configuration/variables.rst:257 -#: ../configuration/variables.rst:296 -msgid "Variable name" -msgstr "" - -#: ../configuration/variables.rst:21 -#: ../configuration/variables.rst:86 -#: ../configuration/variables.rst:108 -#: ../configuration/variables.rst:151 -#: ../configuration/variables.rst:172 -#: ../configuration/variables.rst:197 -#: ../configuration/variables.rst:220 -#: ../configuration/variables.rst:243 -#: ../configuration/variables.rst:258 -#: ../configuration/variables.rst:297 -msgid "Variable syntax" -msgstr "" - -#: ../configuration/variables.rst:22 -#: ../configuration/variables.rst:310 -msgid "Attribution" -msgstr "" - -#: ../configuration/variables.rst:23 -#: ../configuration/variables.rst:311 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../configuration/variables.rst:24 -#: ../configuration/variables.rst:312 -msgid "Attribution Date" -msgstr "" - -#: ../configuration/variables.rst:25 -#: ../configuration/variables.rst:313 -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../configuration/variables.rst:26 -#: ../configuration/variables.rst:298 -msgid "Address Line 1" -msgstr "" - -#: ../configuration/variables.rst:27 -#: ../configuration/variables.rst:299 -#: ../configuration/variables.rst:301 -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../configuration/variables.rst:28 -#: ../configuration/variables.rst:302 -msgid "Address Line 2" -msgstr "" - -#: ../configuration/variables.rst:29 -#: ../configuration/variables.rst:303 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../configuration/variables.rst:30 -#: ../configuration/variables.rst:322 -msgid "Country" -msgstr "" - -#: ../configuration/variables.rst:31 -#: ../configuration/variables.rst:323 -msgid "``{contactfield=country}``" -msgstr "" - -#: ../configuration/variables.rst:32 -#: ../configuration/variables.rst:318 -msgid "City" -msgstr "" - -#: ../configuration/variables.rst:33 -#: ../configuration/variables.rst:319 -msgid "``{contactfield=city}``" -msgstr "" - -#: ../configuration/variables.rst:34 -#: ../configuration/variables.rst:326 -msgid "Company" -msgstr "" - -#: ../configuration/variables.rst:35 -#: ../configuration/variables.rst:327 -msgid "``{contactfield=company}``" -msgstr "" - -#: ../configuration/variables.rst:36 -#: ../configuration/variables.rst:328 -msgid "Contact ID" -msgstr "" - -#: ../configuration/variables.rst:37 -#: ../configuration/variables.rst:329 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../configuration/variables.rst:38 -#: ../configuration/variables.rst:91 -#: ../configuration/variables.rst:334 -msgid "Email" -msgstr "" - -#: ../configuration/variables.rst:39 -#: ../configuration/variables.rst:335 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../configuration/variables.rst:40 -#: ../configuration/variables.rst:338 -msgid "Facebook" -msgstr "" - -#: ../configuration/variables.rst:41 -#: ../configuration/variables.rst:339 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../configuration/variables.rst:42 -#: ../configuration/variables.rst:340 -msgid "Fax" -msgstr "" - -#: ../configuration/variables.rst:43 -#: ../configuration/variables.rst:341 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../configuration/variables.rst:44 -#: ../configuration/variables.rst:87 -#: ../configuration/variables.rst:348 -msgid "First Name" -msgstr "" - -#: ../configuration/variables.rst:45 -#: ../configuration/variables.rst:349 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../configuration/variables.rst:46 -#: ../configuration/variables.rst:350 -msgid "Foursquare" -msgstr "" - -#: ../configuration/variables.rst:47 -#: ../configuration/variables.rst:351 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../configuration/variables.rst:48 -#: ../configuration/variables.rst:352 -msgid "Google+" -msgstr "" - -#: ../configuration/variables.rst:49 -#: ../configuration/variables.rst:353 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../configuration/variables.rst:50 -#: ../configuration/variables.rst:354 -msgid "Instagram" -msgstr "" - -#: ../configuration/variables.rst:51 -#: ../configuration/variables.rst:355 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../configuration/variables.rst:52 -#: ../configuration/variables.rst:356 -msgid "IP Address" -msgstr "" - -#: ../configuration/variables.rst:53 -#: ../configuration/variables.rst:357 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../configuration/variables.rst:54 -#: ../configuration/variables.rst:89 -#: ../configuration/variables.rst:362 -msgid "Last Name" -msgstr "" - -#: ../configuration/variables.rst:55 -#: ../configuration/variables.rst:363 -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../configuration/variables.rst:56 -#: ../configuration/variables.rst:366 -msgid "LinkedIn" -msgstr "" - -#: ../configuration/variables.rst:57 -#: ../configuration/variables.rst:367 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../configuration/variables.rst:58 -#: ../configuration/variables.rst:370 -msgid "Mobile Number" -msgstr "" - -#: ../configuration/variables.rst:59 -#: ../configuration/variables.rst:371 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../configuration/variables.rst:60 -#: ../configuration/variables.rst:376 -msgid "Phone Number" -msgstr "" - -#: ../configuration/variables.rst:61 -#: ../configuration/variables.rst:377 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../configuration/variables.rst:62 -#: ../configuration/variables.rst:93 -#: ../configuration/variables.rst:380 -msgid "Position" -msgstr "" - -#: ../configuration/variables.rst:63 -#: ../configuration/variables.rst:381 -msgid "``{contactfield=position}``" -msgstr "" - -#: ../configuration/variables.rst:64 -#: ../configuration/variables.rst:388 -msgid "Skype" -msgstr "" - -#: ../configuration/variables.rst:65 -#: ../configuration/variables.rst:389 -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../configuration/variables.rst:66 -#: ../configuration/variables.rst:390 -msgid "State" -msgstr "" - -#: ../configuration/variables.rst:67 -#: ../configuration/variables.rst:391 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../configuration/variables.rst:68 -#: ../configuration/variables.rst:396 -msgid "Twitter" -msgstr "" - -#: ../configuration/variables.rst:69 -#: ../configuration/variables.rst:397 -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../configuration/variables.rst:70 -#: ../configuration/variables.rst:200 -#: ../configuration/variables.rst:261 -#: ../configuration/variables.rst:404 -msgid "Title" -msgstr "" - -#: ../configuration/variables.rst:71 -#: ../configuration/variables.rst:405 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../configuration/variables.rst:72 -#: ../configuration/variables.rst:412 -msgid "Website" -msgstr "" - -#: ../configuration/variables.rst:73 -#: ../configuration/variables.rst:413 -msgid "``{contactfield=website}``" -msgstr "" - -#: ../configuration/variables.rst:74 -#: ../configuration/variables.rst:420 -msgid "Zip Code" -msgstr "" - -#: ../configuration/variables.rst:75 -#: ../configuration/variables.rst:421 -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../configuration/variables.rst:78 -msgid "Contact Owner fields" -msgstr "" - -#: ../configuration/variables.rst:88 -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../configuration/variables.rst:90 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../configuration/variables.rst:92 -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../configuration/variables.rst:94 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../configuration/variables.rst:95 -#: ../configuration/variables.rst:173 -#: ../configuration/variables.rst:386 -msgid "Signature" -msgstr "" - -#: ../configuration/variables.rst:96 -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../configuration/variables.rst:99 -msgid "Company Contact fields" -msgstr "" - -#: ../configuration/variables.rst:101 -msgid "See :doc:`Companies` for more information." -msgstr "" - -#: ../configuration/variables.rst:109 -#: ../configuration/variables.rst:300 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../configuration/variables.rst:110 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../configuration/variables.rst:111 -#: ../configuration/variables.rst:304 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../configuration/variables.rst:112 -#: ../configuration/variables.rst:305 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../configuration/variables.rst:113 -#: ../configuration/variables.rst:306 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../configuration/variables.rst:114 -#: ../configuration/variables.rst:307 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../configuration/variables.rst:115 -#: ../configuration/variables.rst:320 -msgid "City (Company)" -msgstr "" - -#: ../configuration/variables.rst:116 -#: ../configuration/variables.rst:321 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../configuration/variables.rst:117 -#: ../configuration/variables.rst:324 -msgid "Country (Company)" -msgstr "" - -#: ../configuration/variables.rst:118 -#: ../configuration/variables.rst:325 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../configuration/variables.rst:119 -#: ../configuration/variables.rst:330 -msgid "Description (Company)" -msgstr "" - -#: ../configuration/variables.rst:120 -#: ../configuration/variables.rst:331 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../configuration/variables.rst:121 -#: ../configuration/variables.rst:336 -msgid "Email (Company)" -msgstr "" - -#: ../configuration/variables.rst:122 -#: ../configuration/variables.rst:337 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../configuration/variables.rst:123 -#: ../configuration/variables.rst:346 -msgid "Fax (Company)" -msgstr "" - -#: ../configuration/variables.rst:124 -#: ../configuration/variables.rst:347 -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../configuration/variables.rst:125 -msgid "Industry (Company)" -msgstr "" - -#: ../configuration/variables.rst:126 -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../configuration/variables.rst:127 -msgid "Name" -msgstr "" - -#: ../configuration/variables.rst:128 -#: ../configuration/variables.rst:373 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../configuration/variables.rst:129 -#: ../configuration/variables.rst:374 -msgid "Number of Employees (Company)" -msgstr "" - -#: ../configuration/variables.rst:130 -#: ../configuration/variables.rst:375 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../configuration/variables.rst:131 -#: ../configuration/variables.rst:378 -msgid "Phone Number (Company)" -msgstr "" - -#: ../configuration/variables.rst:132 -#: ../configuration/variables.rst:379 -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../configuration/variables.rst:133 -#: ../configuration/variables.rst:392 -msgid "State (Company)" -msgstr "" - -#: ../configuration/variables.rst:134 -#: ../configuration/variables.rst:393 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../configuration/variables.rst:135 -#: ../configuration/variables.rst:414 -msgid "Website (Company)" -msgstr "" - -#: ../configuration/variables.rst:136 -#: ../configuration/variables.rst:415 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../configuration/variables.rst:137 -#: ../configuration/variables.rst:422 -msgid "Zip Code (Company)" -msgstr "" - -#: ../configuration/variables.rst:138 -#: ../configuration/variables.rst:423 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../configuration/variables.rst:141 -msgid "Mautic Component tokens" -msgstr "" - -#: ../configuration/variables.rst:143 -msgid "See :doc:`Components` and :doc:`Manage Pages` for more information." -msgstr "" - -#: ../configuration/variables.rst:152 -#: ../configuration/variables.rst:308 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../configuration/variables.rst:153 -#: ../configuration/variables.rst:309 -msgid "``{assetlink=25}``" -msgstr "" - -#: ../configuration/variables.rst:154 -#: ../configuration/variables.rst:342 -msgid "Focus Item id#" -msgstr "" - -#: ../configuration/variables.rst:155 -#: ../configuration/variables.rst:343 -msgid "``{focus=4}``" -msgstr "" - -#: ../configuration/variables.rst:156 -#: ../configuration/variables.rst:344 -msgid "Form id#" -msgstr "" - -#: ../configuration/variables.rst:157 -#: ../configuration/variables.rst:345 -msgid "``{form=83}``" -msgstr "" - -#: ../configuration/variables.rst:158 -#: ../configuration/variables.rst:358 -msgid "Landing Page link for page id#" -msgstr "" - -#: ../configuration/variables.rst:159 -#: ../configuration/variables.rst:359 -msgid "``{pagelink=17}``" -msgstr "" - -#: ../configuration/variables.rst:162 -msgid "Email specific tokens" -msgstr "" - -#: ../configuration/variables.rst:164 -msgid "See :doc:`Manage Emails` for more information." -msgstr "" - -#: ../configuration/variables.rst:174 -#: ../configuration/variables.rst:387 -msgid "``{signature}``" -msgstr "" - -#: ../configuration/variables.rst:175 -#: ../configuration/variables.rst:394 -msgid "Subject" -msgstr "" - -#: ../configuration/variables.rst:176 -#: ../configuration/variables.rst:395 -msgid "``{subject}``" -msgstr "" - -#: ../configuration/variables.rst:177 -#: ../configuration/variables.rst:271 -msgid "Tracking pixel" -msgstr "" - -#: ../configuration/variables.rst:178 -#: ../configuration/variables.rst:272 -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../configuration/variables.rst:179 -#: ../configuration/variables.rst:408 -msgid "Unsubscribe Text" -msgstr "" - -#: ../configuration/variables.rst:180 -#: ../configuration/variables.rst:409 -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../configuration/variables.rst:181 -#: ../configuration/variables.rst:416 -msgid "Web View Text" -msgstr "" - -#: ../configuration/variables.rst:182 -#: ../configuration/variables.rst:417 -msgid "``{webview_text}``" -msgstr "" - -#: ../configuration/variables.rst:183 -#: ../configuration/variables.rst:418 -msgid "Web View URL" -msgstr "" - -#: ../configuration/variables.rst:184 -msgid "``{webview_url}``" -msgstr "" - -#: ../configuration/variables.rst:187 -msgid "Landing Page tokens" -msgstr "" - -#: ../configuration/variables.rst:189 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../configuration/variables.rst:198 -msgid "Meta Description" -msgstr "" - -#: ../configuration/variables.rst:199 -#: ../configuration/variables.rst:369 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../configuration/variables.rst:201 -#: ../configuration/variables.rst:407 -msgid "``{pagetitle}``" -msgstr "" - -#: ../configuration/variables.rst:202 -#: ../configuration/variables.rst:360 -msgid "Language bar" -msgstr "" - -#: ../configuration/variables.rst:203 -#: ../configuration/variables.rst:361 -msgid "``{langbar}``" -msgstr "" - -#: ../configuration/variables.rst:204 -#: ../configuration/variables.rst:400 -msgid "Share Buttons" -msgstr "" - -#: ../configuration/variables.rst:205 -#: ../configuration/variables.rst:401 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../configuration/variables.rst:206 -#: ../configuration/variables.rst:402 -msgid "Success Message" -msgstr "" - -#: ../configuration/variables.rst:207 -#: ../configuration/variables.rst:403 -msgid "``{successmessage}``" -msgstr "" - -#: ../configuration/variables.rst:210 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../configuration/variables.rst:212 -msgid "See :doc:`customizing preference center` for more information." -msgstr "" - -#: ../configuration/variables.rst:221 -msgid "Lead Identifier" -msgstr "" - -#: ../configuration/variables.rst:222 -#: ../configuration/variables.rst:365 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../configuration/variables.rst:223 -msgid "Category List" -msgstr "" - -#: ../configuration/variables.rst:224 -#: ../configuration/variables.rst:315 -msgid "``{categorylist}``" -msgstr "" - -#: ../configuration/variables.rst:225 -msgid "Segment List" -msgstr "" - -#: ../configuration/variables.rst:226 -#: ../configuration/variables.rst:385 -msgid "``{segmentlist}``" -msgstr "" - -#: ../configuration/variables.rst:227 -msgid "Preferred Channel" -msgstr "" - -#: ../configuration/variables.rst:228 -#: ../configuration/variables.rst:399 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../configuration/variables.rst:229 -msgid "Channel Frequency" -msgstr "" - -#: ../configuration/variables.rst:230 -#: ../configuration/variables.rst:317 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../configuration/variables.rst:231 -msgid "Save Preferences" -msgstr "" - -#: ../configuration/variables.rst:232 -#: ../configuration/variables.rst:383 -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../configuration/variables.rst:235 -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../configuration/variables.rst:244 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../configuration/variables.rst:245 -#: ../configuration/variables.rst:333 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../configuration/variables.rst:248 -msgid "Contact Monitoring" -msgstr "" - -#: ../configuration/variables.rst:250 -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../configuration/variables.rst:259 -msgid "Language" -msgstr "" - -#: ../configuration/variables.rst:260 -msgid "``{language}``" -msgstr "" - -#: ../configuration/variables.rst:262 -msgid "``{title}``" -msgstr "" - -#: ../configuration/variables.rst:263 -msgid "Landing Page Title" -msgstr "" - -#: ../configuration/variables.rst:264 -msgid "``{page_title}``" -msgstr "" - -#: ../configuration/variables.rst:265 -msgid "URL" -msgstr "" - -#: ../configuration/variables.rst:266 -msgid "``{url}``" -msgstr "" - -#: ../configuration/variables.rst:267 -msgid "Landing Page URL" -msgstr "" - -#: ../configuration/variables.rst:268 -msgid "``{page_url}``" -msgstr "" - -#: ../configuration/variables.rst:269 -msgid "Referrer" -msgstr "" - -#: ../configuration/variables.rst:270 -msgid "``{referrer}``" -msgstr "" - -#: ../configuration/variables.rst:273 -msgid "UTM Campaign" -msgstr "" - -#: ../configuration/variables.rst:274 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../configuration/variables.rst:275 -msgid "UTM Content" -msgstr "" - -#: ../configuration/variables.rst:276 -msgid "``{utm_content}``" -msgstr "" - -#: ../configuration/variables.rst:277 -msgid "UTM Medium" -msgstr "" - -#: ../configuration/variables.rst:278 -msgid "``{utm_medium}``" -msgstr "" - -#: ../configuration/variables.rst:279 -msgid "UTM Source" -msgstr "" - -#: ../configuration/variables.rst:280 -msgid "``{utm_source}``" -msgstr "" - -#: ../configuration/variables.rst:281 -msgid "UTM Term" -msgstr "" - -#: ../configuration/variables.rst:282 -msgid "``{utm_term}``" -msgstr "" - -#: ../configuration/variables.rst:285 -msgid "Search filters" -msgstr "" - -#: ../configuration/variables.rst:287 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../configuration/variables.rst:290 -msgid "Alphabetical list" -msgstr "" - -#: ../configuration/variables.rst:314 -msgid "Category List (Preference Center)" -msgstr "" - -#: ../configuration/variables.rst:316 -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../configuration/variables.rst:332 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../configuration/variables.rst:364 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../configuration/variables.rst:368 -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../configuration/variables.rst:372 -msgid "Name (Company)" -msgstr "" - -#: ../configuration/variables.rst:382 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../configuration/variables.rst:384 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../configuration/variables.rst:398 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../configuration/variables.rst:406 -msgid "Title (Landing Page)" -msgstr "" - -#: ../configuration/variables.rst:410 -msgid "Unsubscribe URL" -msgstr "" - -#: ../configuration/variables.rst:411 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../configuration/variables.rst:419 -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/docs_translations/contacts.pot b/docs/docs_translations/contacts.pot deleted file mode 100644 index 81df83d1..00000000 --- a/docs/docs_translations/contacts.pot +++ /dev/null @@ -1,45 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../contacts/custom_fields.rst:4 -msgid "Manage custom fields" -msgstr "" - -#: ../contacts/frequency_rules.rst:4 -msgid "Frequency rules" -msgstr "" - -#: ../contacts/import_contacts.rst:4 -msgid "Import Contacts" -msgstr "" - -#: ../contacts/manage_contacts.rst:4 -msgid "Managing Contacts" -msgstr "" - -#: ../contacts/manage_contacts.rst:9 -msgid "Contact tracking" -msgstr "" - -#: ../contacts/preference_center.rst:4 -msgid "Preference center" -msgstr "" - -#: ../contacts/preference_center.rst:8 -msgid "Customize preference center" -msgstr "" diff --git a/docs/docs_translations/dashboard.pot b/docs/docs_translations/dashboard.pot deleted file mode 100644 index 756d5441..00000000 --- a/docs/docs_translations/dashboard.pot +++ /dev/null @@ -1,205 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../dashboard/dashboard.rst:2 -msgid "Dashboard" -msgstr "" - -#: ../dashboard/dashboard.rst:4 -msgid "Mautic 1.4.0 introduced a customizable dashboard where each User can compose widgets with information they want to track. Mautic 2.0 brought a number of enhancements to the Dashboard." -msgstr "" - -#: ../dashboard/dashboard.rst:7 -msgid "Date range filter" -msgstr "" - -#: ../dashboard/dashboard.rst:9 -msgid "All the widgets will display data in the selected global date range filter at the top of the widget list. The default date range is set from 30 days ago to today." -msgstr "" - -#: ../dashboard/dashboard.rst:None -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../dashboard/dashboard.rst:15 -msgid "Line charts will change the time unit automatically depending on the day count selected in the date range filter like this:" -msgstr "" - -#: ../dashboard/dashboard.rst:17 -msgid "Date range is equal 1 day: data will be displayed in hours Date range is between 1 and 31 days: data will be displayed in days Date range is between 32 and 100 days: data will be displayed in weeks Date range is between 101 and 1000 days: data will be displayed in months Date range is greater than 1001 days: data will be displayed in years" -msgstr "" - -#: ../dashboard/dashboard.rst:19 -msgid "The only widget exceptions which display the same information independent on the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../dashboard/dashboard.rst:22 -msgid "Widgets" -msgstr "" - -#: ../dashboard/dashboard.rst:26 -msgid "Don't create too many widgets. It can slow the dashboard Landing Page load down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../dashboard/dashboard.rst:28 -msgid "A new widget can be added to your dashboard when you click the \"Add widget\" button. The \"Add widget\" Form which appears after each widget will let you define:" -msgstr "" - -#: ../dashboard/dashboard.rst:30 -msgid "**Name:** describe what the widget displays. If not filled, Mautic will call it the same as the widget type you select." -msgstr "" - -#: ../dashboard/dashboard.rst:32 -msgid "**Type:** select what information you want to display from the predefined widget types." -msgstr "" - -#: ../dashboard/dashboard.rst:34 -msgid "**Width:** select how wide the widget should be. The options are 25%, 50%, 75%, 100%. The default option is 100%. The optimal width for line charts is 100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../dashboard/dashboard.rst:36 -msgid "**Height:** each widget can have different height. 5 heights are predefined. The dashboard will look best if you select a consistent height for each widget in the same row." -msgstr "" - -#: ../dashboard/dashboard.rst:38 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../dashboard/dashboard.rst:40 -msgid "**Created Contacts over time**" -msgstr "" - -#: ../dashboard/dashboard.rst:42 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../dashboard/dashboard.rst:44 -msgid "Only identified: displays one line with only created and identified Contacts." -msgstr "" - -#: ../dashboard/dashboard.rst:46 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../dashboard/dashboard.rst:48 -msgid "All identified vs anonymous: displays 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../dashboard/dashboard.rst:50 -msgid "Top Segments: displays up to 6 lines representing the number of Contacts added to the top 6 Segments. If no such Segment exists for the selected date range, the chart won't be displayed." -msgstr "" - -#: ../dashboard/dashboard.rst:52 -msgid "Top Segments with Identified vs Anonymous: displays up to 6 lines representing the top 3 Segments for the selected date range. Each Segment will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../dashboard/dashboard.rst:54 -msgid "**Emails in time**" -msgstr "" - -#: ../dashboard/dashboard.rst:56 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../dashboard/dashboard.rst:58 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../dashboard/dashboard.rst:60 -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../dashboard/dashboard.rst:62 -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../dashboard/dashboard.rst:64 -msgid "Sent, opened and failed Emails: Displays 3 lines with sent, opened and failed Emails." -msgstr "" - -#: ../dashboard/dashboard.rst:66 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../dashboard/dashboard.rst:68 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../dashboard/dashboard.rst:70 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../dashboard/dashboard.rst:72 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../dashboard/dashboard.rst:75 -msgid "Widget ordering" -msgstr "" - -#: ../dashboard/dashboard.rst:77 -msgid "Each widget can be moved on the dashboard using the drag and drop interface. Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../dashboard/dashboard.rst:80 -msgid "Dashboard export" -msgstr "" - -#: ../dashboard/dashboard.rst:82 -msgid "Each dashboard, once configured, can be exported to a single file and shared with others. You can make a backup, send it to a colleague or share it online. It exports only the widget configuration - the data which it pulls is not included in the exported file." -msgstr "" - -#: ../dashboard/dashboard.rst:85 -msgid "Dashboard import" -msgstr "" - -#: ../dashboard/dashboard.rst:87 -msgid "If you export a dashboard, you can then upload it and import it again in the Dashboard Import page." -msgstr "" - -#: ../dashboard/dashboard.rst:89 -msgid "Mautic installation come pre-loaded with 3 pre-defined dashboards. The one called default.json is imported automatically, when your dashboard doesn't contain any widgets. The other 2 predefined dashboards are provided as an example. You can export and import any other dashboards and switch between them. Pre-defined dashboards can be:" -msgstr "" - -#: ../dashboard/dashboard.rst:91 -msgid "Previewed - This will display the dashboard widgets for preview. The dashboard will be loaded using your existing Mautic data. Nothing is saved or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../dashboard/dashboard.rst:95 -msgid "Your current widgets will be deleted by this action. Export the current dashboard if you want to go back to it later. Deleted - This will delete the predefined dashboard." -msgstr "" - -#: ../dashboard/dashboard.rst:99 -msgid "Widget cache" -msgstr "" - -#: ../dashboard/dashboard.rst:101 -msgid "The WidgetDetailEvent automatically caches the widget detail data for a period of time defined in the configuration. The default cache expiration period is 10 minutes." -msgstr "" - -#: ../dashboard/dashboard.rst:104 -msgid "Dashboard Permissions" -msgstr "" - -#: ../dashboard/dashboard.rst:106 -msgid "If a Mautic User doesn't have the 'see others' or 'see own' permissions for a bundle, they won't be able to create widgets for that bundle. However, the widget can still be visible on their dashboard. For example if a User creates the widgets and then the administrator removes the permission for that bundle, or if a User imports a dashboard which has widgets for bundles they're not permitted to access. In these cases, the widget is displayed on the dashboard, but with a message that the User doesn't have permission to see the data." -msgstr "" - -#: ../dashboard/dashboard.rst:110 -msgid "If a Mautic User has permission to see only their own data from a bundle, they will see only their own data in the Dashboard widgets. For example only Contacts which they own, Landing Page hits of the Landing Pages they created and so on." -msgstr "" diff --git a/docs/docs_translations/getting_started.pot b/docs/docs_translations/getting_started.pot deleted file mode 100644 index 96950b55..00000000 --- a/docs/docs_translations/getting_started.pot +++ /dev/null @@ -1,924 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../getting_started/how_to_install_mautic.rst:2 -msgid "Installation" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:4 -msgid "There are several ways to install Mautic, you should select the most appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:6 -msgid "Installing :ref:`using the production package`, with either the :ref:`web-based installer` or :ref:`from the command line`." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:8 -msgid "Installing locally by :ref:`cloning from GitHub` - for testing and local development," -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:10 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:13 -msgid "Using the production package" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:15 -msgid "You can install the Mautic production package either by uploading the zipped installation package into the server location or using the command-line installation. The Mautic production package also requires access to a database server." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:17 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:19 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:21 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:23 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:26 -msgid "Preparing for installation" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:28 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:30 -msgid "Your server environment meets the minimum requirements for the version you are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:32 -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:34 -msgid "Your database meets the minimum requirements for the supported databases and valid User permissions to access to the database. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:36 -msgid "Your server has enough free disk space to run the installation. Consider the database size as well." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:38 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:41 -msgid "Downloading a production package" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:43 -msgid "To get started :xref:`Download Mautic` to access the zip file of the latest stable release." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:45 -msgid "For more information about the available Mautic packages, visit the :xref:`Mautic Releases` Landing Page." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:48 -msgid "Uploading the production package" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:50 -msgid "After downloading a desired package, upload the package zip file to your web server, and unzip it in the directory where you plan to host the Mautic instance." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:52 -msgid "Your web server must have the permissions to access the unzipped files." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:55 -msgid "Using the web-based installer" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:57 -msgid "To access the Mautic server from your browser, enter the URL that corresponds to the Mautic instance (for example, `https://m.example.com`) in your web browser. It's recommended to secure your installation with an SSL certificate (https)." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:60 -msgid "Conducting environment checks" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:62 -msgid "After loading the package in the server, the Mautic installer validates if it can run successfully in your server environment." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:64 -msgid "You must resolve installation errors, displayed in red, before completing the Mautic package installation successfully. Warnings, displayed in orange, are often recommendations for a better Mautic experience." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:None -msgid "Screenshot showing Mautic pre-flight checks with warning about installing on a non-SSL connection" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:70 -msgid "If the environment checks are successful - displayed in green - click **Next Step** to begin the installation process." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:73 -msgid "Integrating the database" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:75 -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:77 -msgid "For setting the database server on the **Mautic Installation-Database Setup** window:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:79 -msgid "Select **Database Driver**." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:81 -msgid "Enter **Database Host**." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:83 -msgid "Enter **Database Name**." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:85 -msgid "Enter **Database Username**." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:87 -msgid "If desired, you can also enter values for **Database Port**, **Database Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:89 -msgid "**Backup existing tables?** is on by default, but you should turn it off for a new installation." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:None -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:95 -#: ../getting_started/how_to_install_mautic.rst:106 -msgid "Click **Next Step**." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:98 -msgid "Creating the administrator account" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:100 -msgid "To create an Administrator account for your Mautic instance, enter values for the different fields on the **Mautic Installation - Administrative User** window." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:None -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:111 -msgid "Configuring Email settings" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:115 -msgid "To configure your Email settings for your Mautic instance, enter details of your Email provider on the **Mautic Installation - Email Configuration** window. You can use a tool such as :xref:`Mailhog` to configure a local instance for testing." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:None -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:121 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:123 -msgid "Enter the name and Email address to use with all outgoing Email communications by default. Verify that the provided Email address has been successfully authorized by your Email provider." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:125 -msgid "**Queue** Emails and send them through a cron job - to trigger the queue processing - instead of sending them immediately for larger instances of Email handling." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:127 -msgid "Select **Mailer transport**. If your provider isn't listed, select **Other SMTP Server** and provide the SMTP credentials. API-based sending is significantly faster than SMTP. Depending on the provider you select, additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:129 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:131 -msgid "Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:133 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:136 -msgid "Logging into Mautic" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:138 -msgid "On the Mautic login window, enter your Mautic administrator credentials to log into your Mautic instance." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:None -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:144 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:147 -msgid "Installing with command line" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:149 -msgid "You can also install Mautic using the command line. You can either pass the settings parameters in the command, or create a local PHP file with your database settings. You can also define properties in this file using the syntax expected by the command-line options." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:151 -msgid "Use the command ``path/to/php bin/console mautic:install --help`` for the list of options and flags available." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:181 -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:210 -msgid "Installing with a local PHP file" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:212 -msgid "Run the following command after replacing the path to PHP bin and Mautic instance URL." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:214 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:216 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:226 -msgid "As the installation process begins, it flags up warnings and aborts if there are any critical errors." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:248 -msgid "You can now login to your Mautic instance with your Mautic Admin credentials." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:251 -msgid "Installing from GitHub" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:253 -msgid "It's essential to have all the files locally - including automated tests - from the GitHub repository when testing Mautic or contributing to it. Many of these files aren't included in the production build process." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:256 -msgid "Cloning Mautic from GitHub" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:258 -msgid "Install the :xref:`GitHub CLI` tool." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:260 -msgid "Click **Fork** at the top-right corner of the Mautic GitHub repository page to make a personal fork. You can also click to go directly to your fork if you already have one, if you don't then GitHub will offer to create one.." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:262 -msgid "After the fork is complete, click the green **Code** button to access the command for cloning the repository." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:264 -msgid "Switch to your terminal, and when in the directory where you wish to install Mautic, paste the command using the :xref:`GitHub CLI` tool this is in the format:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:272 -msgid "Please always choose to fork into a **personal account** rather than an organization. The latter prevents Mautic's maintainers from working with your Pull Request." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:275 -msgid "Install Mautic using DDEV" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:277 -msgid "You can use :xref:`DDEV` which is recommended for testing and development with Mautic. To get started:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:280 -msgid "Install :xref:`DDEV`." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:282 -msgid "Install and ensure you have :xref:`Docker` running on your system." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:284 -msgid "You can now change into the Mautic directory and kick off the DDEV quickstart using the command:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:292 -msgid "For troubleshooting see :xref:`DDEV Troubleshooting`." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:294 -msgid "See Mautic's :xref:`Handbook` for more detailed instructions." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:298 -msgid "This spins up a DDEV instance (which includes Mailhog, PHPMyAdmin, and Redis Commander) - by default at ``https://mautic.ddev.site`` - and also gives the option to set up Mautic ready for you to use. .. vale on" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:301 -msgid "This runs through the Composer install process, and installs Mautic at the command line with a default username of ``admin`` and password of ``mautic``." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:304 -msgid "Installing with Composer" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:306 -msgid "Since :xref:`Mautic 4` it's possible to install and manage Mautic using the full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:308 -msgid "Mautic is in the process of decoupling Plugins and Themes from core, however at present while they have been technically mirrored out into separate repositories, the source files remain in the main :xref:`Mautic GitHub repository`." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:310 -msgid "When you clone from GitHub, running ``composer install`` installs all the dependencies, there are some other handy features which you can take advantage of when installing and managing Mautic." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:315 -msgid "Using the Recommended Project" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:319 -msgid "The Mautic :xref:`Recommended Project` is a template which provides a starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:322 -msgid "The instructions below refer to the global Composer installation. You might need to replace Composer with ``php composer.phar`` or something similar for your setup." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:324 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:330 -msgid "With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:337 -msgid "The Composer ``create-project`` command passes ownership of all files to the created project. You should create a new git repository, and commit all files not excluded by the .gitignore file." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:342 -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:346 -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:348 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:349 -msgid "Autoloader uses the generated Composer autoloader in ``vendor/autoload.php``, instead of the one provided by Mautic in ``docroot/vendor/autoload.php``." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:350 -msgid "Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:351 -msgid "Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:352 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:353 -msgid "Creates environment variables based on your ``.env`` file. See ``.env.example``." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:358 -msgid "Updating Mautic Core" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:362 -msgid "The Recommended Project attempts to keep all of your Mautic core files up-to-date." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:364 -msgid "The project ``mautic/core-composer-scaffold`` updates your scaffold files whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:366 -msgid "If you customize any of the \"scaffolding\" files - commonly .htaccess - you may need to merge conflicts if new release of Mautic Core result in changes to your modified files." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:368 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:370 -msgid "1 Run ``composer update mautic/core-lib --with-dependencies`` to update Mautic core and its dependencies." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:372 -msgid "2 Run ``git diff`` to determine if any of the scaffolding files have changed. Review the files for any changes and restore any customizations to .htaccess or others." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:374 -msgid "3 Commit everything all together in a single commit, so the ``docroot`` remains in sync with the core when checking out branches or running git bisect." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:376 -msgid "4 In the event that there are non-trivial conflicts in step 2, you may wish to perform these steps on a branch, and use ``git merge`` to combine the updated core files with your customized files. This facilitates the use of a three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if your changes are simple - keeping all of your modifications at the beginning or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:378 -msgid "5 Run the following commands to update your database with any changes from the release:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:391 -msgid "Composer FAQs" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:396 -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:398 -msgid "Composer says that the :xref:`Composer commit dependencies`. They provide arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:401 -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:403 -msgid "The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files - for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory of your project." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:406 -msgid "If you haven't customized those files you could choose to not commit them in your version control system - for example, git. If that's the case for your project it might be convenient to automatically run the Mautic Scaffold Plugin after every install or update of your project." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:410 -msgid "You can achieve that by registering ``@composer mautic:scaffold`` as post-install and post-update command in your composer.json:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:428 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:430 -msgid "If you need to apply patches - depending on the Plugin, a pull request is often a better solution - you can do so with the ``composer-patches`` Plugin." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:432 -msgid "To add a patch to Mautic Plugin foobar insert the patches section in the extra section of ``composer.json``:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:448 -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:452 -msgid "This project supports PHP 7.4 as the minimum version currently - review :xref:`Mautic's Requirements` however, it's possible that a Composer update may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:454 -msgid "To prevent this you can add this code to specify the PHP version you want to use in the config section of ``composer.json``:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:467 -msgid "How can you use another folder than ``docroot`` as the root folder?" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:469 -msgid "By default the ``composer.json`` file places all Mautic core, Plugin and Theme files in the ``docroot`` folder. It's possible to change this folder to your own needs." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:472 -msgid "In following examples, ``docroot`` moves into ``public``." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:475 -msgid "New installations" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:477 -msgid "Run the create-project command without installing:" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:483 -msgid "Do a find and replace in the ``composer.json`` file to change ``docroot/`` into ``public/``" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:484 -#: ../getting_started/how_to_install_mautic.rst:497 -msgid "Review the changes in the ``composer.json`` file to ensure that there are no unintentional replacements" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:485 -msgid "Run ``composer install`` to install all dependencies in the correct location" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:488 -msgid "Existing installations" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:490 -msgid "Move the ``docroot/`` to ``public/``" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:496 -msgid "Do a find and replace in the ``composer.json`` file to change ``docroot/`` to ``public/``" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:498 -msgid "Run ``composer update --lock`` to ensure the autoloader is aware of the changed folder" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:503 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:507 -msgid "Often there is a need to have a local environment for testing Mautic - for example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:509 -msgid "In Mautic, DDEV is the tool of choice for this purpose. It's very easy to work with." -msgstr "" - -#: ../getting_started/how_to_install_mautic.rst:511 -msgid "To learn how to set up DDEV with Mautic, please review the documentation in the Contributors Handbook at https://contribute.mautic.org/contributing-to-mautic/tester." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:4 -msgid "How to update Mautic" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:8 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:10 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:11 -msgid "Through the User interface" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:13 -msgid "If your instance is in production, has a large number of Contacts and/or is on shared hosting, it's **strongly** recommended that you update at the command line." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:16 -msgid "Updating in the User interface requires a significant amount of resources, and can be error-prone if the server restricts resource allocation. A failed update or corrupted data can result from this. It's planned to remove this feature in Mautic 5.0, requiring updating at the command line." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:19 -msgid "Updating at the command line (non-Composer based installations)" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:21 -msgid "Before you commence updating Mautic, **please ensure that you have a tested backup of your Mautic instance**." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:23 -#: ../getting_started/how_to_update_mautic.rst:93 -msgid "This means that you have downloaded the files and database of your Mautic instance, and you have re-created it in a test environment somewhere and tested that everything is working as expected. This is your only recourse if there are any problems with the update. Never update without having a working, up-to-date backup." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:26 -msgid "Checking for updates at the command line" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:28 -msgid "Mautic can only be updated using Composer via the command line from version 5.0." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:30 -msgid "The update feature within the Mautic User interface (UI) has been deprecated from Mautic 4.2, but you will be alerted within the UI (see below figure) when a new version of the Mautic is available." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:None -msgid "Screenshot showing deprecated update feature warning" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:38 -msgid "Before starting to upgrade, it's highly recommended to take a backup of your instance. If updates are available, you will receive an update notification followed by step-by-step instructions in the command-line interface to complete the process." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:40 -msgid "Log in via the command line, and change directory to the Mautic directory using the command:" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:48 -msgid "The first step is to find out if there are any updates available using the following command:" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:54 -msgid "The output from this command tells you if there are any updates to apply. The notification links to an announcement post which explains what the release includes, and the recommended environment requirements if they are not being met (for example, a higher version of PHP must be installed or plugins that must be updated)." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:57 -msgid "It's a good idea to review the announcement link for information about the release. There may be important information or steps that you may need to take before updating." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:59 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:62 -msgid "Installing updates at the command line" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:64 -msgid "If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:71 -msgid "This is followed by a prompt to run the command again with this additional argument:" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:79 -msgid "Updating in the browser" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:81 -msgid "When updating Mautic, there are several tasks which can take a long time to complete depending on the size of your Mautic instance." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:85 -msgid "If you have a lot of contacts and/or use shared hosting, you might run into problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:87 -msgid "When updating within the browser, problems usually manifest as the update hanging part way through, or crashing with an error. They often arise as a result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:89 -msgid "For this reason, it's always recommended that you :ref:`update at the command line` wherever possible. From Mautic 5.0 the ability to update in the browser will be completely removed, and you will have to update at the command line." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:91 -msgid "Before you commence updating, **please ensure that you have a tested backup of your Mautic instance**." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:96 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:98 -msgid "When Mautic makes a new release, a notification appears in your Mautic instance." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:100 -msgid "The notification links to an announcement post which explains what the release includes." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:103 -msgid "It's a good idea to read the announcement link for information about the release. There may be important information or steps that you may need to take before updating." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:105 -msgid "Once you have thoroughly read the release notes, and have tested your backup Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:107 -msgid "The update takes time to complete, and each step updates in the browser as it proceeds. Be patient and allow it to finish. On completion, a message confirms that the update has completed successfully." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:110 -msgid "The update wasn't successful" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:112 -msgid "If this has happened to you, head over to the Troubleshooting section for a step-by-step walk-through of how to complete the update. Maybe consider using the command line next time." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:115 -msgid "Stability levels" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:117 -msgid "By default, Mautic receives notifications both in the user interface and at the command line for stable releases only." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:119 -msgid "If you wish to help with testing early access releases in a development environment, do the following" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:121 -msgid "Edit your configuration and set the stability level to Alpha, Beta, or Release Candidate. This allows you to receive notifications for early access releases." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:122 -msgid "Always read the release notes before updating to an early access release." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:123 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:126 -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:128 -msgid "If you need help, you can ask for it in several places. You should remember that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:130 -msgid "The :xref:`Mautic Community Forums` is the place where you can ask questions about your configuration if you think it is the cause of the problem. Please search before posting your question, since someone may have already answered it." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:132 -msgid "The live :xref:`Mautic Community Slack` is also available, but all support requests have to be posted on the forums. Create your request there first, then drop a link in Slack if you plan to discuss it there." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:134 -msgid "In all cases, it's important to provide details about the issue, as well as the steps you have taken to resolve it. At a minimum, include the following:" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:136 -msgid "Steps to reproduce your problem - a step-by-step walk-through of what you have done so far" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:137 -msgid "Your server's PHP version." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:138 -msgid "The version of Mautic you are on, and the version you are aiming to update to" -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:139 -msgid "The error messages you are seeing - if you don't see the error message directly, search for it in the var/logs folder within your Mautic directory and in the server logs. Server logs are in different places depending on your setup. Ubuntu servers generally have logs in ``/var/log/apache2/error.log``. Sometimes your hosting provider might offer a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:141 -msgid "If you don't provide the information requested as a minimum, the person who might try to help you has to ask you for it, so please save them the trouble and provide the information upfront. Also, importantly, please be polite. Mautic is an open source project, and people are giving their free time to help you." -msgstr "" - -#: ../getting_started/how_to_update_mautic.rst:143 -msgid "If you are sure that you have discovered a bug and you want to report it to developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not the right place to request support or ask for help with configuration errors. Always post on the forums first if you aren't sure, if a bug report is appropriate this can link to the forum thread." -msgstr "" - -#: ../getting_started/switching_composer.rst:4 -msgid "How to switch to Composer" -msgstr "" - -#: ../getting_started/switching_composer.rst:8 -msgid "Until Mautic 4, you could download Mautic as a ZIP file and install it on any PHP server. However, many users were running into installation and update errors, many of which caused considerable frustration and in some cases, significant business disruption." -msgstr "" - -#: ../getting_started/switching_composer.rst:11 -msgid "In addition, Mautic recently introduced the :ref:`Mautic Marketplace` which isn't compatible with this installation method." -msgstr "" - -#: ../getting_started/switching_composer.rst:13 -msgid "As a result of the reasons mentioned above, Composer becomes the default method for installing and updating Mautic starting with the release of Mautic 5. Read more in the :xref:`composer blog post`." -msgstr "" - -#: ../getting_started/switching_composer.rst:16 -msgid "Switching to a Composer-based installation" -msgstr "" - -#: ../getting_started/switching_composer.rst:18 -msgid "Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../getting_started/switching_composer.rst:20 -msgid "The database - This is where Mautic stores your Contact data." -msgstr "" - -#: ../getting_started/switching_composer.rst:22 -msgid "The codebase - This is where Mautic interacts with the database." -msgstr "" - -#: ../getting_started/switching_composer.rst:24 -msgid "When switching to a Composer-based installation, the **database** isn't touched, only the **codebase.**" -msgstr "" - -#: ../getting_started/switching_composer.rst:26 -msgid "In this tutorial, it's assumed that Mautic is currently installed in ``/var/www/html``." -msgstr "" - -#: ../getting_started/switching_composer.rst:28 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../getting_started/switching_composer.rst:30 -msgid "Go to ``/var/www``" -msgstr "" - -#: ../getting_started/switching_composer.rst:32 -msgid "Run ``composer create-project mautic/recommended-project:^4 html-new --no-interaction``" -msgstr "" - -#: ../getting_started/switching_composer.rst:34 -msgid "Copy the following files and folders from ``/var/www/html`` to ``/var/www/html-new``:" -msgstr "" - -#: ../getting_started/switching_composer.rst:36 -msgid "Configuration files - in most cases, located at ``app/config/local.php`` - move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../getting_started/switching_composer.rst:38 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../getting_started/switching_composer.rst:40 -msgid "Uploads - in most cases, located at ``app/media/files`` and ``app/media/images`` - move to ``docroot/app/media/files`` and ``docroot/app/media/images`` respectively." -msgstr "" - -#: ../getting_started/switching_composer.rst:42 -msgid "Custom dashboards from ``app/media/dashboards`` - move to ``docroot/app/media/dashboards``" -msgstr "" - -#: ../getting_started/switching_composer.rst:44 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../getting_started/switching_composer.rst:46 -msgid "Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../getting_started/switching_composer.rst:48 -msgid "Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` to ``/var/www/html``" -msgstr "" - -#: ../getting_started/switching_composer.rst:50 -msgid "Update your web server configuration to point to ``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../getting_started/switching_composer.rst:52 -msgid "Log in to Mautic, and in your global settings enable the switch to fully manage Mautic with Composer - this will also enable you to work with the Mautic Marketplace." -msgstr "" - -#: ../getting_started/switching_composer.rst:None -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../getting_started/switching_composer.rst:58 -msgid "You have successfully switched to a Composer-based installation. Test Mautic to see if it works as expected." -msgstr "" - -#: ../getting_started/switching_composer.rst:63 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../getting_started/switching_composer.rst:65 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../getting_started/switching_composer.rst:67 -msgid "A: Yes, switching to the Composer-based installation only affects app files. It doesn't affect your data in any way." -msgstr "" - -#: ../getting_started/switching_composer.rst:69 -msgid "Q: What's the minimum Mautic version required to switch to the Composer-based installation?" -msgstr "" - -#: ../getting_started/switching_composer.rst:71 -msgid "A: It is necessary to have at least Mautic 4.0.0 in order to switch to a Composer-based installation." -msgstr "" diff --git a/docs/docs_translations/index.pot b/docs/docs_translations/index.pot deleted file mode 100644 index d1b40717..00000000 --- a/docs/docs_translations/index.pot +++ /dev/null @@ -1,145 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../index.rst:24 -msgid "Welcome to Mautic" -msgstr "" - -#: ../index.rst:31 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../index.rst:40 -msgid "Configuration" -msgstr "" - -#: ../index.rst:51 -msgid "Authentication" -msgstr "" - -#: ../index.rst:58 -msgid "Contacts" -msgstr "" - -#: ../index.rst:69 -msgid "Segments" -msgstr "" - -#: ../index.rst:76 -msgid "Campaigns" -msgstr "" - -#: ../index.rst:87 -msgid "Categories" -msgstr "" - -#: ../index.rst:94 -msgid "Channels" -msgstr "" - -#: ../index.rst:108 -msgid "Companies" -msgstr "" - -#: ../index.rst:115 -msgid "Components" -msgstr "" - -#: ../index.rst:126 -msgid "Dashboard" -msgstr "" - -#: ../index.rst:133 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../index.rst:141 -msgid "Mautic Marketplace" -msgstr "" - -#: ../index.rst:148 -msgid "Plugins" -msgstr "" - -#: ../index.rst:176 -msgid "Points" -msgstr "" - -#: ../index.rst:184 -msgid "Queue" -msgstr "" - -#: ../index.rst:192 -msgid "Reports" -msgstr "" - -#: ../index.rst:199 -msgid "Search" -msgstr "" - -#: ../index.rst:206 -msgid "Stages" -msgstr "" - -#: ../index.rst:213 -msgid "Themes" -msgstr "" - -#: ../index.rst:224 -msgid "Translation" -msgstr "" - -#: ../index.rst:231 -msgid "User and Roles" -msgstr "" - -#: ../index.rst:2 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../index.rst:4 -msgid "**Mautic** is an open source marketing automation platform that provides you with the greatest level of audience intelligence, thus enabling you to make more meaningful customer connections." -msgstr "" - -#: ../index.rst:6 -msgid "To get started with Mautic, follow the :doc:`Getting started guide`. For next steps, you can learn :doc:`how to update Mautic`." -msgstr "" - -#: ../index.rst:9 -msgid "There are different types of documentation available to help you navigate your way through Mautic." -msgstr "" - -#: ../index.rst:11 -msgid ":xref:`End User Documentation` - Describes each aspect of Mautic in detail and explains how to use it.." -msgstr "" - -#: ../index.rst:13 -msgid ":xref:`Developer Documentation` - Describes details about the Mautic API, Webhooks, Themes and Plugin development." -msgstr "" - -#: ../index.rst:15 -msgid ":xref:`Knowledgebase` - Provides a database of tutorials, FAQs, and how-to articles." -msgstr "" - -#: ../index.rst:17 -msgid ":xref:`Community Handbook` - Describes how to get involved and contribute to Mautic's documentation development." -msgstr "" - -#: ../index.rst:21 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/docs_translations/marketplace.pot b/docs/docs_translations/marketplace.pot deleted file mode 100644 index 2d815ed5..00000000 --- a/docs/docs_translations/marketplace.pot +++ /dev/null @@ -1,21 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../marketplace/marketplace.rst:4 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/docs_translations/overview.pot b/docs/docs_translations/overview.pot deleted file mode 100644 index 7a5e175e..00000000 --- a/docs/docs_translations/overview.pot +++ /dev/null @@ -1,153 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../overview/overview.rst:2 -msgid "Mautic overview" -msgstr "" - -#: ../overview/overview.rst:4 -msgid "The Mautic platform helps you create a strong marketing strategy for your business. With Mautic, you can:" -msgstr "" - -#: ../overview/overview.rst:7 -msgid "Connect with your Contacts over Channels like Emails, Text Messages, Social Media, and Focus Items." -msgstr "" - -#: ../overview/overview.rst:9 -msgid "Segment your Contacts based on business requirements and personalize your marketing strategy for each Segment." -msgstr "" - -#: ../overview/overview.rst:10 -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../overview/overview.rst:11 -msgid "Use performance metrics in Dashboards, Reports, Points, and Stages to measure the efficiency of your marketing strategy." -msgstr "" - -#: ../overview/overview.rst:14 -msgid "How it works" -msgstr "" - -#: ../overview/overview.rst:16 -msgid "To start, it helps to understand how the different pieces of Mautic fit together to give you a holistic marketing platform experience." -msgstr "" - -#: ../overview/overview.rst:None -msgid "Mautic Overview" -msgstr "" - -#: ../overview/overview.rst:24 -msgid "Contact management" -msgstr "" - -#: ../overview/overview.rst:26 -msgid "Build a rich and functional database of Contacts for your business, group them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../overview/overview.rst:28 -msgid ":doc:`/contacts/manage_contacts` - Known or unknown individuals who have visited your websites or interacted with your business in some way. Contacts are the primary factor of a marketing automation platform." -msgstr "" - -#: ../overview/overview.rst:30 -msgid ":doc:`/segments/manage_segments` - A group of your Contacts that share certain attributes. For example, you may segment Contacts based on a Contact's location. This may help you easily send out location-based offers or promotions to this specific group of Contacts." -msgstr "" - -#: ../overview/overview.rst:32 -msgid ":doc:`/companies/companies_overview` - An assigned group of Contacts based on their Company or Companies." -msgstr "" - -#: ../overview/overview.rst:36 -msgid "Components" -msgstr "" - -#: ../overview/overview.rst:38 -msgid "Create and manage various types of content that you use for your marketing campaigns to engage your Contacts." -msgstr "" - -#: ../overview/overview.rst:40 -msgid ":doc:`/components/assets` - Valuable items that you provide to your Contacts upon completion of a Form. White papers, a downloadable app/file, documents or videos are some examples of Assets." -msgstr "" - -#: ../overview/overview.rst:42 -msgid ":doc:`/components/forms` - Forms are the primary point of customer engagement. They're used to collect contact information, often in exchange for providing access to an Asset such as a download, an event registration, or an Email newsletter." -msgstr "" - -#: ../overview/overview.rst:44 -msgid ":doc:`/components/landing_pages` - A powerful feature that not only allows you to promote content quickly and easily, but also allows you to rapidly create Landing Pages that are tightly tailored for a specific purpose, such as an advertising campaign." -msgstr "" - -#: ../overview/overview.rst:46 -msgid ":doc:`/components/dynamic_web_content` - A feature that you can use to personalize the web experience for your Contacts. Marketers can display different content to different people in specific areas of a webpage." -msgstr "" - -#: ../overview/overview.rst:49 -msgid "Campaigns" -msgstr "" - -#: ../overview/overview.rst:51 -msgid ":doc:`/campaigns/campaigns_overview` - With your Contact information and the Components in place, you can start to create customized marketing activities for your Contacts. You create these marketing activities primarily in Campaigns." -msgstr "" - -#: ../overview/overview.rst:54 -msgid "Channels" -msgstr "" - -#: ../overview/overview.rst:56 -msgid "Choose one or more Channels to deliver the content and messages to your Contacts." -msgstr "" - -#: ../overview/overview.rst:58 -msgid ":doc:`/channels/marketing_messages` - A way to personalize communication with your Contacts. With Marketing Messages, Contacts receive your content on a Channel they've set as their preference." -msgstr "" - -#: ../overview/overview.rst:60 -msgid ":doc:`/channels/emails` - Use built-in Email templates to send messages to a group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../overview/overview.rst:62 -msgid ":doc:`/channels/focus_items` - A type of web personalization that enables marketers to embed on a webpage pop-up messages and Forms, bars and splash screens based on the Contact's behavior. By using Focus Items, you can easily convert visitors into known Contacts." -msgstr "" - -#: ../overview/overview.rst:64 -msgid ":doc:`/channels/social_monitoring` - Marketers can add Contacts to Mautic through Twitter mentions and hashtags." -msgstr "" - -#: ../overview/overview.rst:67 -msgid "Assess performance" -msgstr "" - -#: ../overview/overview.rst:69 -msgid "Analyze trends and assess the performance of your marketing strategy using various tools." -msgstr "" - -#: ../overview/overview.rst:71 -msgid ":doc:`/dashboard/dashboard` - A high-level representation of Contact data, Campaigns, and activities. You can create a highly personalized dashboard based on the information that you want to track." -msgstr "" - -#: ../overview/overview.rst:73 -msgid ":doc:`/reports/reports` - A tool to measure the effectiveness of your marketing Campaigns, Emails, Forms, or Landing Page hits. Reports also let you troubleshoot or workaround areas of improvement to enhance your marketing strategy." -msgstr "" - -#: ../overview/overview.rst:75 -msgid ":doc:`/points/points` - A score that's an indicator of progress for a Contact or customer. Points are a way for marketers to measure which of their Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../overview/overview.rst:77 -msgid ":doc:`/stages/stages` - A customizable feature that enables you to keep a track of where your Contacts are in their marketing/sales journey." -msgstr "" diff --git a/docs/docs_translations/plugins.pot b/docs/docs_translations/plugins.pot deleted file mode 100644 index 0ae798fd..00000000 --- a/docs/docs_translations/plugins.pot +++ /dev/null @@ -1,213 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../plugins/amazon.rst:4 -msgid "Amazon S3" -msgstr "" - -#: ../plugins/citrix.rst:4 -msgid "Citrix" -msgstr "" - -#: ../plugins/clearbit.rst:4 -msgid "Clearbit" -msgstr "" - -#: ../plugins/connectwise.rst:4 -msgid "ConnectWise" -msgstr "" - -#: ../plugins/fullcontact.rst:4 -msgid "FullContact" -msgstr "" - -#: ../plugins/gmail.rst:4 -msgid "GMail" -msgstr "" - -#: ../plugins/hubspot.rst:4 -msgid "HubSpot" -msgstr "" - -#: ../plugins/icontact.rst:4 -msgid "iContact" -msgstr "" - -#: ../plugins/mailchimp.rst:4 -msgid "MailChimp" -msgstr "" - -#: ../plugins/microsoft_dynamics_crm.rst:4 -msgid "Microsoft Dynamics CRM" -msgstr "" - -#: ../plugins/microsoft_outlook.rst:4 -msgid "Microsoft Outlook" -msgstr "" - -#: ../plugins/pipedrive.rst:4 -msgid "Pipedrive" -msgstr "" - -#: ../plugins/plugin_resources.rst:4 -msgid "Plugin resources" -msgstr "" - -#: ../plugins/salesforce.rst:4 -msgid "Salesforce" -msgstr "" - -#: ../plugins/social_login.rst:4 -msgid "Social Login" -msgstr "" - -#: ../plugins/sugar_crm.rst:4 -msgid "Sugar CRM" -msgstr "" - -#: ../plugins/tag_manager.rst:4 -msgid "Tag Manager" -msgstr "" - -#: ../plugins/twilio.rst:4 -msgid "Twilio" -msgstr "" - -#: ../plugins/twilio.rst:7 -msgid "Mautic - Twilio Plugin" -msgstr "" - -#: ../plugins/twilio.rst:11 -msgid "Before you start to send text messages from your Mautic instance, it needs to connect to the service which can send them." -msgstr "" - -#: ../plugins/twilio.rst:13 -msgid "The first and default implemented service is :xref:`Twilio`." -msgstr "" - -#: ../plugins/twilio.rst:15 -msgid "In order to configure the text messages correctly, follow these steps:" -msgstr "" - -#: ../plugins/twilio.rst:17 -msgid "Create an account at :xref:`Twilio`." -msgstr "" - -#: ../plugins/twilio.rst:19 -msgid "In Mautic, go to *Settings* (cog icon) > *Plugins*." -msgstr "" - -#: ../plugins/twilio.rst:21 -msgid "Open *Twilio* Plugin and activate it." -msgstr "" - -#: ../plugins/twilio.rst:23 -msgid "Copy the *Account Sender ID* from Twilio account and paste it to *Account Sender ID* field in the Twilio Plugin configuration." -msgstr "" - -#: ../plugins/twilio.rst:25 -msgid "Unlock and copy the *Auth Token* and paste it to *Auth Token* field in the Twilio Plugin configuration." -msgstr "" - -#: ../plugins/twilio.rst:27 -msgid "Go to *Products* > *Phone Numbers* in Twilio, copy the number and paste it to the *Sending Phone Number* field in Mautic." -msgstr "" - -#: ../plugins/twilio.rst:29 -msgid "Select the *Text Message Enabled*? switch to *Yes* and save the Mautic configuration." -msgstr "" - -#: ../plugins/twilio.rst:34 -msgid "Alphanumeric Sender ID" -msgstr "" - -#: ../plugins/twilio.rst:38 -msgid "Alphanumeric Sender ID allows you to send Twilio Programmable SMS messages using a personalized sender name, in supported countries see :xref:`International Support for Alphanumeric Sender ID`." -msgstr "" - -#: ../plugins/twilio.rst:40 -msgid "Instead of using an E.164 formatted Twilio Phone number for the \"From\" value, you can use a custom string like your own business' branding." -msgstr "" - -#: ../plugins/twilio.rst:44 -msgid "You can't reply directly to messages sent out with an Alphanumeric Sender ID." -msgstr "" - -#: ../plugins/twilio.rst:49 -msgid "Alphanumeric Sender ID requirements" -msgstr "" - -#: ../plugins/twilio.rst:53 -msgid "Alphanumeric Sender ID is automatically supported on all new :xref:`upgraded (paid) Twilio accounts`. It's not supported for Free Trial accounts." -msgstr "" - -#: ../plugins/twilio.rst:55 -msgid "You can verify if your account has Alphanumeric Sender enabled by following these steps:" -msgstr "" - -#: ../plugins/twilio.rst:57 -msgid "Login to your account at :xref:`Twilio`." -msgstr "" - -#: ../plugins/twilio.rst:59 -msgid "From the left side navigation bar, click Programmable SMS." -msgstr "" - -#: ../plugins/twilio.rst:61 -msgid "Click Settings." -msgstr "" - -#: ../plugins/twilio.rst:63 -msgid "Verify that \"Alphanumeric Sender ID\" is set to Enabled." -msgstr "" - -#: ../plugins/twilio.rst:65 -msgid "Follow these steps to see if your account has Alphanumeric Sender enabled." -msgstr "" - -#: ../plugins/twilio.rst:70 -msgid "Send SMS Messages using an Alphanumeric Sender ID with Mautic" -msgstr "" - -#: ../plugins/twilio.rst:74 -msgid "Just setup your alias in plugin settings:" -msgstr "" - -#: ../plugins/twilio.rst:0 -msgid "Screenshot of alphanumeric-id" -msgstr "" - -#: ../plugins/twilio.rst:80 -msgid "Read more info about :xref:`Alphanumeric Sender ID` on Twillio site." -msgstr "" - -#: ../plugins/twitter.rst:4 -msgid "Twitter" -msgstr "" - -#: ../plugins/vtiger.rst:4 -msgid "Vtiger" -msgstr "" - -#: ../plugins/zapier.rst:4 -msgid "Zapier" -msgstr "" - -#: ../plugins/zoho_crm.rst:4 -msgid "Zoho CRM" -msgstr "" diff --git a/docs/docs_translations/points.pot b/docs/docs_translations/points.pot deleted file mode 100644 index 65f116bb..00000000 --- a/docs/docs_translations/points.pot +++ /dev/null @@ -1,25 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../points/points.rst:4 -msgid "Points" -msgstr "" - -#: ../points/points_troubleshooting.rst:4 -msgid "Points troubleshooting" -msgstr "" diff --git a/docs/docs_translations/queue.pot b/docs/docs_translations/queue.pot deleted file mode 100644 index 3a4b4c22..00000000 --- a/docs/docs_translations/queue.pot +++ /dev/null @@ -1,25 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../queue/message_queue.rst:4 -msgid "Message queue" -msgstr "" - -#: ../queue/queue.rst:4 -msgid "Queue" -msgstr "" diff --git a/docs/docs_translations/reports.pot b/docs/docs_translations/reports.pot deleted file mode 100644 index a3f9ec55..00000000 --- a/docs/docs_translations/reports.pot +++ /dev/null @@ -1,21 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../reports/reports.rst:4 -msgid "Reports" -msgstr "" diff --git a/docs/docs_translations/search.pot b/docs/docs_translations/search.pot deleted file mode 100644 index 8604b760..00000000 --- a/docs/docs_translations/search.pot +++ /dev/null @@ -1,21 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../search/search_operators.rst:4 -msgid "Search operators" -msgstr "" diff --git a/docs/docs_translations/segments.pot b/docs/docs_translations/segments.pot deleted file mode 100644 index d8ebb8d4..00000000 --- a/docs/docs_translations/segments.pot +++ /dev/null @@ -1,21 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../segments/manage_segments.rst:4 -msgid "Managing Segments" -msgstr "" diff --git a/docs/docs_translations/stages.pot b/docs/docs_translations/stages.pot deleted file mode 100644 index 9b127b6d..00000000 --- a/docs/docs_translations/stages.pot +++ /dev/null @@ -1,21 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../stages/stages.rst:4 -msgid "Stages" -msgstr "" diff --git a/docs/docs_translations/themes.pot b/docs/docs_translations/themes.pot deleted file mode 100644 index 8abe7c0c..00000000 --- a/docs/docs_translations/themes.pot +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../themes/code_mode.rst:4 -msgid "Code Mode" -msgstr "" - -#: ../themes/customizing_themes.rst:4 -msgid "Customizing Themes" -msgstr "" - -#: ../themes/manage_themes.rst:4 -msgid "Manage Themes" -msgstr "" - -#: ../themes/theme_structure.rst:4 -msgid "Theme Structure" -msgstr "" diff --git a/docs/docs_translations/translations.pot b/docs/docs_translations/translations.pot deleted file mode 100644 index fe1aea66..00000000 --- a/docs/docs_translations/translations.pot +++ /dev/null @@ -1,21 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../translations/translations.rst:4 -msgid "Translation" -msgstr "" diff --git a/docs/docs_translations/users_roles.pot b/docs/docs_translations/users_roles.pot deleted file mode 100644 index 39a96bf2..00000000 --- a/docs/docs_translations/users_roles.pot +++ /dev/null @@ -1,25 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../users_roles/managing_roles.rst:4 -msgid "Managing Roles" -msgstr "" - -#: ../users_roles/managing_users.rst:4 -msgid "Managing Users" -msgstr "" diff --git a/docs/getting_started/how_to_install_mautic.rst b/docs/getting_started/how_to_install_mautic.rst index d5aef0c6..a81b1f68 100644 --- a/docs/getting_started/how_to_install_mautic.rst +++ b/docs/getting_started/how_to_install_mautic.rst @@ -382,7 +382,6 @@ Follow the steps below to update your core files. bin/console cache:clear bin/console mautic:update:apply --finish bin/console doctrine:migration:migrate --no-interaction - bin/console doctrine:schema:update --no-interaction --force bin/console cache:clear .. vale off diff --git a/docs/index.rst b/docs/index.rst index c0d11d80..defa5617 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -45,6 +45,7 @@ There are different types of documentation available to help you navigate your w configuration/maxmind_license configuration/command_line_interface configuration/cron_jobs + configuration/local_php_overview configuration/variables configuration/settings @@ -59,7 +60,8 @@ There are different types of documentation available to help you navigate your w :maxdepth: 2 :caption: Contacts :hidden: - + + contacts/contacts_overview contacts/manage_contacts contacts/import_contacts contacts/custom_fields @@ -180,6 +182,7 @@ There are different types of documentation available to help you navigate your w points/points points/points_troubleshooting + points/point_groups .. toctree:: :maxdepth: 2 diff --git a/docs/links/clear_cache.py b/docs/links/clear_cache.py new file mode 100644 index 00000000..98a02a29 --- /dev/null +++ b/docs/links/clear_cache.py @@ -0,0 +1,7 @@ +from . import link + +link_name = "clearing the symfony cache" +link_text = "clearing the Symfony cache" +link_url = "https://devdocs.mautic.org/en/5.x/components/cache.html" + +link.xref_links.update({link_name: (link_text, link_url)}) \ No newline at end of file diff --git a/docs/links/gravatar.py b/docs/links/gravatar.py new file mode 100644 index 00000000..3fc6af6d --- /dev/null +++ b/docs/links/gravatar.py @@ -0,0 +1,7 @@ +from . import link + +link_name = "Gravatar" +link_text = "Gravatar" +link_url = "https://en.gravatar.com/" + +link.xref_links.update({link_name: (link_text, link_url)}) \ No newline at end of file diff --git a/docs/links/marketplace.py b/docs/links/marketplace.py index b0e9a538..967597e7 100644 --- a/docs/links/marketplace.py +++ b/docs/links/marketplace.py @@ -2,6 +2,6 @@ link_name = "Developer Documentation Marketplace" link_text = "Developer Documentation Marketplace" -link_url = "https://developer.mautic.org/#marketplace" +link_url = "https://devdocs.mautic.org/en/5.x/marketplace/getting_started.html" link.xref_links.update({link_name: (link_text, link_url)}) \ No newline at end of file diff --git a/docs/links/mautic_api_documentation.py b/docs/links/mautic_api_documentation.py index acdaa5cc..01da5cfd 100644 --- a/docs/links/mautic_api_documentation.py +++ b/docs/links/mautic_api_documentation.py @@ -2,6 +2,6 @@ link_name = "Reports API documentation" link_text = "Reports API documentation" -link_url = "https://developer.mautic.org/#reports" +link_url = "https://devdocs.mautic.org/en/5.x/components/reports.html" link.xref_links.update({link_name: (link_text, link_url)}) \ No newline at end of file diff --git a/docs/links/mautic_developer_api_section.py b/docs/links/mautic_developer_api_section.py index 351b2250..b124939a 100644 --- a/docs/links/mautic_developer_api_section.py +++ b/docs/links/mautic_developer_api_section.py @@ -2,6 +2,6 @@ link_name = "Mautic developer API" link_text = "in the Developer Documentation" -link_url = "https://developer.mautic.org/#rest-api" +link_url = "https://devdocs.mautic.org/en/5.x/rest_api/assets.html" link.xref_links.update({link_name: (link_text, link_url)}) \ No newline at end of file diff --git a/docs/links/maxmind_ccpa.py b/docs/links/maxmind_ccpa.py index bcf4b540..97267808 100644 --- a/docs/links/maxmind_ccpa.py +++ b/docs/links/maxmind_ccpa.py @@ -2,6 +2,6 @@ link_name = "MaxMind website" link_text = "MaxMind website" -link_url = "https://blog.maxmind.com/search-results?q=ccpa" +link_url = "https://support.maxmind.com/hc/en-us/search?utf8=%E2%9C%93&query=ccpa" link.xref_links.update({link_name: (link_text, link_url)}) \ No newline at end of file diff --git a/docs/links/private_network.py b/docs/links/private_network.py new file mode 100644 index 00000000..ac9a8a28 --- /dev/null +++ b/docs/links/private_network.py @@ -0,0 +1,7 @@ +from . import link + +link_name = "private network" +link_text = "private network" +link_url = "https://en.wikipedia.org/wiki/Private_network" + +link.xref_links.update({link_name: (link_text, link_url)}) \ No newline at end of file diff --git a/docs/links/roles_api.py b/docs/links/roles_api.py index adfe1f8d..e8738723 100644 --- a/docs/links/roles_api.py +++ b/docs/links/roles_api.py @@ -4,6 +4,6 @@ link_name = "create Roles using the API" link_text = "create Roles using the API" -link_url = "https://developer.mautic.org/#roles" +link_url = "https://devdocs.mautic.org/en/5.x/rest_api/roles.html" link.xref_links.update({link_name: (link_text, link_url)}) \ No newline at end of file diff --git a/docs/links/symfony_mailer.py b/docs/links/symfony_mailer.py new file mode 100644 index 00000000..cfd02c9f --- /dev/null +++ b/docs/links/symfony_mailer.py @@ -0,0 +1,7 @@ +from . import link + +link_name = "Symfony Mailer" +link_text = "Symfony Mailer" +link_url = "https://symfony.com/doc/5.4/mailer.html" + +link.xref_links.update({link_name: (link_text, link_url)}) \ No newline at end of file diff --git a/docs/links/theme.py b/docs/links/theme.py index 9fc4b11f..082d7fd2 100644 --- a/docs/links/theme.py +++ b/docs/links/theme.py @@ -2,6 +2,6 @@ link_name = "create a Theme" link_text = "create a Theme" -link_url = "https://developer.mautic.org/#themes" +link_url = "https://devdocs.mautic.org/en/5.x/themes/getting_started.html" link.xref_links.update({link_name: (link_text, link_url)}) \ No newline at end of file diff --git a/docs/links/theme_directory_structure.py b/docs/links/theme_directory_structure.py index 11a95abb..242eea36 100644 --- a/docs/links/theme_directory_structure.py +++ b/docs/links/theme_directory_structure.py @@ -2,6 +2,6 @@ link_name = "themes developer documentation" link_text = "themes developer documentation" -link_url = "https://developer.mautic.org/#theme-directory-structure" +link_url = "https://devdocs.mautic.org/en/5.x/themes/getting_started.html#directory-structure" link.xref_links.update({link_name: (link_text, link_url)}) \ No newline at end of file diff --git a/docs/locale/ach/LC_MESSAGES/authentication/authentication.po b/docs/locale/ach/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index dc8f40e8..00000000 --- a/docs/locale/ach/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/builders/creating_themes.po b/docs/locale/ach/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 7fc30fd7..00000000 --- a/docs/locale/ach/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/ach/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index a005c353..00000000 --- a/docs/locale/ach/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/ach/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index a8b21873..00000000 --- a/docs/locale/ach/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/ach/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 67e70d36..00000000 --- a/docs/locale/ach/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/ach/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 51ee28f1..00000000 --- a/docs/locale/ach/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/ach/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index faf4d0fc..00000000 --- a/docs/locale/ach/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/ach/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 95beea3e..00000000 --- a/docs/locale/ach/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/categories/categories-overview.po b/docs/locale/ach/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 6c3b4455..00000000 --- a/docs/locale/ach/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/channels/emails.po b/docs/locale/ach/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 3cc0158f..00000000 --- a/docs/locale/ach/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/channels/focus_items.po b/docs/locale/ach/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 53351050..00000000 --- a/docs/locale/ach/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/ach/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 4b41c410..00000000 --- a/docs/locale/ach/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/channels/push_notifications.po b/docs/locale/ach/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index b836e769..00000000 --- a/docs/locale/ach/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/channels/sms.po b/docs/locale/ach/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 552b5ee9..00000000 --- a/docs/locale/ach/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/ach/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 04a5ad87..00000000 --- a/docs/locale/ach/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/channels/utm_tags.po b/docs/locale/ach/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index c9d3aa6d..00000000 --- a/docs/locale/ach/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the
tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/channels/web_notifications.po b/docs/locale/ach/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 5e3b431d..00000000 --- a/docs/locale/ach/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/companies/companies_overview.po b/docs/locale/ach/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 087d53b8..00000000 --- a/docs/locale/ach/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/components/assets.po b/docs/locale/ach/LC_MESSAGES/components/assets.po deleted file mode 100644 index b555701f..00000000 --- a/docs/locale/ach/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/ach/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 6bd43155..00000000 --- a/docs/locale/ach/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/components/forms.po b/docs/locale/ach/LC_MESSAGES/components/forms.po deleted file mode 100644 index 79e23c89..00000000 --- a/docs/locale/ach/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/components/landing_pages.po b/docs/locale/ach/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 38fe4567..00000000 --- a/docs/locale/ach/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/configuration/settings.po b/docs/locale/ach/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 40d3373e..00000000 --- a/docs/locale/ach/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/ach/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index a7205496..00000000 --- a/docs/locale/ach/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/ach/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 9bbdf263..00000000 --- a/docs/locale/ach/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/contributing/contributing.po b/docs/locale/ach/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index cb85becd..00000000 --- a/docs/locale/ach/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/ach/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 691155db..00000000 --- a/docs/locale/ach/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/ach/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 5dc80ff0..00000000 --- a/docs/locale/ach/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/ach/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index ea3170fb..00000000 --- a/docs/locale/ach/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/ach/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 0ca7a975..00000000 --- a/docs/locale/ach/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/ach/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index fe4b2b2e..00000000 --- a/docs/locale/ach/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/index.po b/docs/locale/ach/LC_MESSAGES/index.po deleted file mode 100644 index a7fa5e3e..00000000 --- a/docs/locale/ach/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/ach/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 36074ca6..00000000 --- a/docs/locale/ach/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/overview/overview.po b/docs/locale/ach/LC_MESSAGES/overview/overview.po deleted file mode 100644 index d9057cb4..00000000 --- a/docs/locale/ach/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/plugins/twilio.po b/docs/locale/ach/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 5973ba92..00000000 --- a/docs/locale/ach/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/plugins/twitter.po b/docs/locale/ach/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 0d64284d..00000000 --- a/docs/locale/ach/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/points/points.po b/docs/locale/ach/LC_MESSAGES/points/points.po deleted file mode 100644 index a016fd90..00000000 --- a/docs/locale/ach/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/reports/reports.po b/docs/locale/ach/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 4a150010..00000000 --- a/docs/locale/ach/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/ach/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index c99ce340..00000000 --- a/docs/locale/ach/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/ach/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 4bfcc798..00000000 --- a/docs/locale/ach/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/ach/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index a55a2e1f..00000000 --- a/docs/locale/ach/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/ach/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index de539c16..00000000 --- a/docs/locale/ach/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/set_up/variables.po b/docs/locale/ach/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 7dcbd033..00000000 --- a/docs/locale/ach/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/stages/stages.po b/docs/locale/ach/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 9f3d8eaf..00000000 --- a/docs/locale/ach/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/ach/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/ach/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 1bf20d59..00000000 --- a/docs/locale/ach/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Acoli (https://www.transifex.com/mautic/teams/33223/ach/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ach\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/authentication/authentication.po b/docs/locale/af/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 5f491162..00000000 --- a/docs/locale/af/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/builders/creating_themes.po b/docs/locale/af/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 649f80f7..00000000 --- a/docs/locale/af/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/af/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index b0bf4204..00000000 --- a/docs/locale/af/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/af/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 158681c9..00000000 --- a/docs/locale/af/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/af/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 1e051c28..00000000 --- a/docs/locale/af/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/af/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index f77a3420..00000000 --- a/docs/locale/af/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/af/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 3f842e9f..00000000 --- a/docs/locale/af/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/af/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 0c396701..00000000 --- a/docs/locale/af/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/categories/categories-overview.po b/docs/locale/af/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 087d4d89..00000000 --- a/docs/locale/af/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/channels/emails.po b/docs/locale/af/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 44fd84b0..00000000 --- a/docs/locale/af/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/channels/focus_items.po b/docs/locale/af/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 0536f911..00000000 --- a/docs/locale/af/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/af/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 43ecd599..00000000 --- a/docs/locale/af/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/channels/push_notifications.po b/docs/locale/af/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 8a9725dd..00000000 --- a/docs/locale/af/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/channels/sms.po b/docs/locale/af/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 7a76ce28..00000000 --- a/docs/locale/af/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/af/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 14040f99..00000000 --- a/docs/locale/af/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/channels/utm_tags.po b/docs/locale/af/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 20fa2cc5..00000000 --- a/docs/locale/af/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/channels/web_notifications.po b/docs/locale/af/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index ef4e7e4e..00000000 --- a/docs/locale/af/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/companies/companies_overview.po b/docs/locale/af/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 80a8c805..00000000 --- a/docs/locale/af/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/components/assets.po b/docs/locale/af/LC_MESSAGES/components/assets.po deleted file mode 100644 index 6b3bab19..00000000 --- a/docs/locale/af/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/af/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 0b7903a1..00000000 --- a/docs/locale/af/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/components/forms.po b/docs/locale/af/LC_MESSAGES/components/forms.po deleted file mode 100644 index 569006d8..00000000 --- a/docs/locale/af/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/components/landing_pages.po b/docs/locale/af/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 3cd54c82..00000000 --- a/docs/locale/af/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/configuration/settings.po b/docs/locale/af/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 48f4bb77..00000000 --- a/docs/locale/af/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/af/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index c92724e7..00000000 --- a/docs/locale/af/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/af/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 77a48b8d..00000000 --- a/docs/locale/af/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/contributing/contributing.po b/docs/locale/af/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index ad6e36f8..00000000 --- a/docs/locale/af/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/af/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 3ffa7e99..00000000 --- a/docs/locale/af/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/af/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 75e06727..00000000 --- a/docs/locale/af/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/af/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 07646082..00000000 --- a/docs/locale/af/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/af/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 20a46fc5..00000000 --- a/docs/locale/af/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/af/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index f1b33b67..00000000 --- a/docs/locale/af/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/index.po b/docs/locale/af/LC_MESSAGES/index.po deleted file mode 100644 index 1ff8d441..00000000 --- a/docs/locale/af/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/af/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 64995dec..00000000 --- a/docs/locale/af/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/overview/overview.po b/docs/locale/af/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 38c3d6e9..00000000 --- a/docs/locale/af/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/plugins/twilio.po b/docs/locale/af/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 8e7c9ce3..00000000 --- a/docs/locale/af/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/plugins/twitter.po b/docs/locale/af/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index e3df5722..00000000 --- a/docs/locale/af/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/points/points.po b/docs/locale/af/LC_MESSAGES/points/points.po deleted file mode 100644 index f46fd6d2..00000000 --- a/docs/locale/af/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/reports/reports.po b/docs/locale/af/LC_MESSAGES/reports/reports.po deleted file mode 100644 index e8408abd..00000000 --- a/docs/locale/af/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/af/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 2040a0c6..00000000 --- a/docs/locale/af/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/af/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index b776fc52..00000000 --- a/docs/locale/af/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/af/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 76da6b03..00000000 --- a/docs/locale/af/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/af/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 7cb53ac6..00000000 --- a/docs/locale/af/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/set_up/variables.po b/docs/locale/af/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index d331f30b..00000000 --- a/docs/locale/af/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/stages/stages.po b/docs/locale/af/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 88257e7a..00000000 --- a/docs/locale/af/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/af/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/af/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 4ce59e48..00000000 --- a/docs/locale/af/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Afrikaans (https://www.transifex.com/mautic/teams/33223/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/authentication/authentication.po b/docs/locale/ar/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 8d95d8f8..00000000 --- a/docs/locale/ar/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/builders/creating_themes.po b/docs/locale/ar/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index c367f041..00000000 --- a/docs/locale/ar/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/ar/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index d38f33b1..00000000 --- a/docs/locale/ar/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/ar/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index e8bf5336..00000000 --- a/docs/locale/ar/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/ar/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index eece3531..00000000 --- a/docs/locale/ar/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/ar/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 8b92b3e9..00000000 --- a/docs/locale/ar/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/ar/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index fd3ffbbd..00000000 --- a/docs/locale/ar/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/ar/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index ba784796..00000000 --- a/docs/locale/ar/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/categories/categories-overview.po b/docs/locale/ar/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index e4d119a5..00000000 --- a/docs/locale/ar/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/channels/emails.po b/docs/locale/ar/LC_MESSAGES/channels/emails.po deleted file mode 100644 index b24eb3d9..00000000 --- a/docs/locale/ar/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/channels/focus_items.po b/docs/locale/ar/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 4ec0978b..00000000 --- a/docs/locale/ar/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/ar/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index cbadbe89..00000000 --- a/docs/locale/ar/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/channels/push_notifications.po b/docs/locale/ar/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 827f17ec..00000000 --- a/docs/locale/ar/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/channels/sms.po b/docs/locale/ar/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 33306aff..00000000 --- a/docs/locale/ar/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/ar/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 551e6181..00000000 --- a/docs/locale/ar/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/channels/utm_tags.po b/docs/locale/ar/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 67f6e416..00000000 --- a/docs/locale/ar/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/channels/web_notifications.po b/docs/locale/ar/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index a55289b9..00000000 --- a/docs/locale/ar/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/companies/companies_overview.po b/docs/locale/ar/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 96cd9061..00000000 --- a/docs/locale/ar/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/components/assets.po b/docs/locale/ar/LC_MESSAGES/components/assets.po deleted file mode 100644 index b56b2c90..00000000 --- a/docs/locale/ar/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/ar/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 4688502d..00000000 --- a/docs/locale/ar/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/components/forms.po b/docs/locale/ar/LC_MESSAGES/components/forms.po deleted file mode 100644 index cbf7f151..00000000 --- a/docs/locale/ar/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/components/landing_pages.po b/docs/locale/ar/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index aa7f2770..00000000 --- a/docs/locale/ar/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/configuration/settings.po b/docs/locale/ar/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 7d7d8002..00000000 --- a/docs/locale/ar/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/ar/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index bbe67f37..00000000 --- a/docs/locale/ar/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/ar/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 6a0e94c8..00000000 --- a/docs/locale/ar/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/contributing/contributing.po b/docs/locale/ar/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 84d6ddc9..00000000 --- a/docs/locale/ar/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/ar/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index f12dd27b..00000000 --- a/docs/locale/ar/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/ar/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index b303a73e..00000000 --- a/docs/locale/ar/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/ar/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index a10052d7..00000000 --- a/docs/locale/ar/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/ar/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 4cd6478c..00000000 --- a/docs/locale/ar/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/ar/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index ffae456a..00000000 --- a/docs/locale/ar/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/index.po b/docs/locale/ar/LC_MESSAGES/index.po deleted file mode 100644 index bf554d46..00000000 --- a/docs/locale/ar/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/ar/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 87d62c3a..00000000 --- a/docs/locale/ar/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/overview/overview.po b/docs/locale/ar/LC_MESSAGES/overview/overview.po deleted file mode 100644 index be198d7a..00000000 --- a/docs/locale/ar/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/plugins/twilio.po b/docs/locale/ar/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 8aa89e46..00000000 --- a/docs/locale/ar/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/plugins/twitter.po b/docs/locale/ar/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 4143d612..00000000 --- a/docs/locale/ar/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/points/points.po b/docs/locale/ar/LC_MESSAGES/points/points.po deleted file mode 100644 index 38045ed5..00000000 --- a/docs/locale/ar/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/reports/reports.po b/docs/locale/ar/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 7aee4c22..00000000 --- a/docs/locale/ar/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/ar/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 59b60155..00000000 --- a/docs/locale/ar/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/ar/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 6290f4ec..00000000 --- a/docs/locale/ar/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/ar/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 9bfb122e..00000000 --- a/docs/locale/ar/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/ar/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index d9c9f97c..00000000 --- a/docs/locale/ar/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/set_up/variables.po b/docs/locale/ar/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 77415e3e..00000000 --- a/docs/locale/ar/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/stages/stages.po b/docs/locale/ar/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 8c73f65f..00000000 --- a/docs/locale/ar/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/ar/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/ar/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 1a6932f1..00000000 --- a/docs/locale/ar/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (https://www.transifex.com/mautic/teams/33223/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\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" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/authentication/authentication.po b/docs/locale/ar_SA/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 0b70aeab..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/builders/creating_themes.po b/docs/locale/ar_SA/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 7ac85230..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/ar_SA/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 7f104e8b..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/ar_SA/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 7f21ba76..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/ar_SA/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index d8984959..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/ar_SA/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index fa5bcb78..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/ar_SA/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index cc933f31..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/ar_SA/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 510143a7..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/categories/categories-overview.po b/docs/locale/ar_SA/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 6c689b0f..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/channels/emails.po b/docs/locale/ar_SA/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 7b43e435..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/channels/focus_items.po b/docs/locale/ar_SA/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index e994d6a2..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/ar_SA/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 7431a17d..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/channels/push_notifications.po b/docs/locale/ar_SA/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index ff5f4556..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/channels/sms.po b/docs/locale/ar_SA/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 918640ed..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/ar_SA/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 197a4112..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/channels/utm_tags.po b/docs/locale/ar_SA/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index d7cd873c..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/channels/web_notifications.po b/docs/locale/ar_SA/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 7c9c9bfb..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/companies/companies_overview.po b/docs/locale/ar_SA/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index ce1c44c6..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/components/assets.po b/docs/locale/ar_SA/LC_MESSAGES/components/assets.po deleted file mode 100644 index 95fc7132..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/ar_SA/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 036ed4a2..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/components/forms.po b/docs/locale/ar_SA/LC_MESSAGES/components/forms.po deleted file mode 100644 index 56345537..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/components/landing_pages.po b/docs/locale/ar_SA/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 397a7fc0..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/configuration/settings.po b/docs/locale/ar_SA/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index be7da1d2..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/ar_SA/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index ab7b4c40..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/ar_SA/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 82c88da5..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/contributing/contributing.po b/docs/locale/ar_SA/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index ca6bb51b..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/ar_SA/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index e428a047..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/ar_SA/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 56821c93..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/ar_SA/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 9f1f674a..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/ar_SA/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 779b1a7a..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/ar_SA/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index b0524e9f..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/index.po b/docs/locale/ar_SA/LC_MESSAGES/index.po deleted file mode 100644 index 48c2adeb..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/ar_SA/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 25bedfb0..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/overview/overview.po b/docs/locale/ar_SA/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 457324d6..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/plugins/twilio.po b/docs/locale/ar_SA/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index bbd5df0e..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/plugins/twitter.po b/docs/locale/ar_SA/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 60d5ba2e..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/points/points.po b/docs/locale/ar_SA/LC_MESSAGES/points/points.po deleted file mode 100644 index dab9207e..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/reports/reports.po b/docs/locale/ar_SA/LC_MESSAGES/reports/reports.po deleted file mode 100644 index d0ec4e28..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/ar_SA/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 78ecbdf3..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/ar_SA/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 7da12ce3..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/ar_SA/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index f78994d3..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/ar_SA/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 58b4a31e..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/set_up/variables.po b/docs/locale/ar_SA/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 0f448580..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/stages/stages.po b/docs/locale/ar_SA/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 5d63db84..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/ar_SA/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/ar_SA/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index f8000a98..00000000 --- a/docs/locale/ar_SA/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/mautic/teams/33223/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\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" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/authentication/authentication.po b/docs/locale/be_BY/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 4e182d84..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/builders/creating_themes.po b/docs/locale/be_BY/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 8e2ad8ad..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/be_BY/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 34585ae0..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/be_BY/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index fc63f8a3..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/be_BY/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 2f2508bd..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/be_BY/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 34a4410f..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/be_BY/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 403312f5..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/be_BY/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 7408d08d..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/categories/categories-overview.po b/docs/locale/be_BY/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index e45b282c..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/channels/emails.po b/docs/locale/be_BY/LC_MESSAGES/channels/emails.po deleted file mode 100644 index bebdc3d2..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/channels/focus_items.po b/docs/locale/be_BY/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 07bbea3a..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/be_BY/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 2ccd15fb..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/channels/push_notifications.po b/docs/locale/be_BY/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 8b86d8a9..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/channels/sms.po b/docs/locale/be_BY/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 6aff983e..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/be_BY/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 7353e966..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/channels/utm_tags.po b/docs/locale/be_BY/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 8753e219..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/channels/web_notifications.po b/docs/locale/be_BY/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 7783bdf1..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/companies/companies_overview.po b/docs/locale/be_BY/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index a5fdc05e..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/components/assets.po b/docs/locale/be_BY/LC_MESSAGES/components/assets.po deleted file mode 100644 index 1c0b4336..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/be_BY/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 80afaac7..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/components/forms.po b/docs/locale/be_BY/LC_MESSAGES/components/forms.po deleted file mode 100644 index fb72b691..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/components/landing_pages.po b/docs/locale/be_BY/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 78492159..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/configuration/settings.po b/docs/locale/be_BY/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 0c7572ae..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/be_BY/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 56b9977e..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/be_BY/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index a58c68c3..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/contributing/contributing.po b/docs/locale/be_BY/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 6471ea2f..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/be_BY/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 046f2683..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/be_BY/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 5fc8c6b5..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/be_BY/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 8ccea3ac..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/be_BY/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index e58f53bf..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/be_BY/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 74c30d6e..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/index.po b/docs/locale/be_BY/LC_MESSAGES/index.po deleted file mode 100644 index 63f864e5..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/be_BY/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index a3a1738a..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/overview/overview.po b/docs/locale/be_BY/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 8097d545..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/plugins/twilio.po b/docs/locale/be_BY/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 6ed0c48d..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/plugins/twitter.po b/docs/locale/be_BY/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index f3751198..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/points/points.po b/docs/locale/be_BY/LC_MESSAGES/points/points.po deleted file mode 100644 index 4453cf69..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/reports/reports.po b/docs/locale/be_BY/LC_MESSAGES/reports/reports.po deleted file mode 100644 index be6ce001..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/be_BY/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 1ba5fc28..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/be_BY/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index d3e81143..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/be_BY/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index a3bfb74c..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/be_BY/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 1308efd2..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/set_up/variables.po b/docs/locale/be_BY/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 8c09f660..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/stages/stages.po b/docs/locale/be_BY/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 117e054e..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/be_BY/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/be_BY/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index b01f669e..00000000 --- a/docs/locale/be_BY/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Belarusian (Belarus) (https://www.transifex.com/mautic/teams/33223/be_BY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/authentication/authentication.po b/docs/locale/bg/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index d9712b70..00000000 --- a/docs/locale/bg/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/builders/creating_themes.po b/docs/locale/bg/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index e0b37e01..00000000 --- a/docs/locale/bg/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/bg/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 9ab7cda7..00000000 --- a/docs/locale/bg/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/bg/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 6ce9acf8..00000000 --- a/docs/locale/bg/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/bg/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 6bc99e00..00000000 --- a/docs/locale/bg/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/bg/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 6fb2d828..00000000 --- a/docs/locale/bg/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/bg/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 78121cbc..00000000 --- a/docs/locale/bg/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/bg/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index cc9e93d6..00000000 --- a/docs/locale/bg/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/categories/categories-overview.po b/docs/locale/bg/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index e4e8f539..00000000 --- a/docs/locale/bg/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/channels/emails.po b/docs/locale/bg/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 70d12b71..00000000 --- a/docs/locale/bg/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/channels/focus_items.po b/docs/locale/bg/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 3f8fb0a4..00000000 --- a/docs/locale/bg/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/bg/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index b4fbf714..00000000 --- a/docs/locale/bg/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/channels/push_notifications.po b/docs/locale/bg/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index e65ddd95..00000000 --- a/docs/locale/bg/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/channels/sms.po b/docs/locale/bg/LC_MESSAGES/channels/sms.po deleted file mode 100644 index d341a32f..00000000 --- a/docs/locale/bg/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/bg/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index e3073e20..00000000 --- a/docs/locale/bg/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/channels/utm_tags.po b/docs/locale/bg/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 7e7a24e5..00000000 --- a/docs/locale/bg/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/channels/web_notifications.po b/docs/locale/bg/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index b37ddca7..00000000 --- a/docs/locale/bg/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/companies/companies_overview.po b/docs/locale/bg/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index d8968e88..00000000 --- a/docs/locale/bg/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/components/assets.po b/docs/locale/bg/LC_MESSAGES/components/assets.po deleted file mode 100644 index 45512ec1..00000000 --- a/docs/locale/bg/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/bg/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index e4aa9e51..00000000 --- a/docs/locale/bg/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/components/forms.po b/docs/locale/bg/LC_MESSAGES/components/forms.po deleted file mode 100644 index c062db06..00000000 --- a/docs/locale/bg/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/components/landing_pages.po b/docs/locale/bg/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index c9488d08..00000000 --- a/docs/locale/bg/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/configuration/settings.po b/docs/locale/bg/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 2c79de7a..00000000 --- a/docs/locale/bg/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/bg/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 78aafaa9..00000000 --- a/docs/locale/bg/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/bg/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index a6c7fd03..00000000 --- a/docs/locale/bg/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/contributing/contributing.po b/docs/locale/bg/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 053be187..00000000 --- a/docs/locale/bg/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/bg/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 3176260b..00000000 --- a/docs/locale/bg/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/bg/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index a596762c..00000000 --- a/docs/locale/bg/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/bg/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 9213650f..00000000 --- a/docs/locale/bg/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/bg/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 590dedfc..00000000 --- a/docs/locale/bg/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/bg/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 517a64a1..00000000 --- a/docs/locale/bg/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/index.po b/docs/locale/bg/LC_MESSAGES/index.po deleted file mode 100644 index 28ffbb57..00000000 --- a/docs/locale/bg/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/bg/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index bae40676..00000000 --- a/docs/locale/bg/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/overview/overview.po b/docs/locale/bg/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 314ff7b7..00000000 --- a/docs/locale/bg/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/plugins/twilio.po b/docs/locale/bg/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index efe69ec9..00000000 --- a/docs/locale/bg/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/plugins/twitter.po b/docs/locale/bg/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 021dd2f9..00000000 --- a/docs/locale/bg/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/points/points.po b/docs/locale/bg/LC_MESSAGES/points/points.po deleted file mode 100644 index 83cfb012..00000000 --- a/docs/locale/bg/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/reports/reports.po b/docs/locale/bg/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 29cc6317..00000000 --- a/docs/locale/bg/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/bg/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index a404d5fc..00000000 --- a/docs/locale/bg/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/bg/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 4d978abd..00000000 --- a/docs/locale/bg/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/bg/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 74006eec..00000000 --- a/docs/locale/bg/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/bg/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index df21ef26..00000000 --- a/docs/locale/bg/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/set_up/variables.po b/docs/locale/bg/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 6d44b745..00000000 --- a/docs/locale/bg/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/stages/stages.po b/docs/locale/bg/LC_MESSAGES/stages/stages.po deleted file mode 100644 index beb39f23..00000000 --- a/docs/locale/bg/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/bg/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/bg/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index f74cdacf..00000000 --- a/docs/locale/bg/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (https://www.transifex.com/mautic/teams/33223/bg/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/authentication/authentication.po b/docs/locale/bg_BG/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 70082390..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/builders/creating_themes.po b/docs/locale/bg_BG/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index c0b8bc19..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/bg_BG/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 3b605ea2..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/bg_BG/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index cfe08663..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/bg_BG/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index a8fdaf53..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/bg_BG/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index acd9aa1e..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/bg_BG/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 0e41d51e..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/bg_BG/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 2ec5132e..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/categories/categories-overview.po b/docs/locale/bg_BG/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 0ba5a95e..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/channels/emails.po b/docs/locale/bg_BG/LC_MESSAGES/channels/emails.po deleted file mode 100644 index c5de9ba4..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/channels/focus_items.po b/docs/locale/bg_BG/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 7a343566..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/bg_BG/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 9a82af70..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/channels/push_notifications.po b/docs/locale/bg_BG/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index dea5024f..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/channels/sms.po b/docs/locale/bg_BG/LC_MESSAGES/channels/sms.po deleted file mode 100644 index b576496b..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/bg_BG/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 6257e650..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/channels/utm_tags.po b/docs/locale/bg_BG/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 86617e7f..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/channels/web_notifications.po b/docs/locale/bg_BG/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index c1255760..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/companies/companies_overview.po b/docs/locale/bg_BG/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 5ff37953..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/components/assets.po b/docs/locale/bg_BG/LC_MESSAGES/components/assets.po deleted file mode 100644 index 593a1faf..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/bg_BG/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 0e7f740c..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/components/forms.po b/docs/locale/bg_BG/LC_MESSAGES/components/forms.po deleted file mode 100644 index ad1bffe9..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/components/landing_pages.po b/docs/locale/bg_BG/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 4ca24662..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/configuration/settings.po b/docs/locale/bg_BG/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 966cf366..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/bg_BG/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index d415701f..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/bg_BG/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 36a2c8ac..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/contributing/contributing.po b/docs/locale/bg_BG/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 4e0ba6cf..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/bg_BG/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 5b1997d8..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/bg_BG/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 5e6e9d63..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/bg_BG/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index baa2aefe..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/bg_BG/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index f34ed35a..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/bg_BG/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 1fce1d87..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/index.po b/docs/locale/bg_BG/LC_MESSAGES/index.po deleted file mode 100644 index 2c177cd8..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/bg_BG/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 289d14af..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/overview/overview.po b/docs/locale/bg_BG/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 980bb347..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/plugins/twilio.po b/docs/locale/bg_BG/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 7b4af528..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/plugins/twitter.po b/docs/locale/bg_BG/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 6c325a67..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/points/points.po b/docs/locale/bg_BG/LC_MESSAGES/points/points.po deleted file mode 100644 index 48e8c6b6..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/reports/reports.po b/docs/locale/bg_BG/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 27b01876..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/bg_BG/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 2a097da0..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/bg_BG/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 6e8b4481..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/bg_BG/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 4754bb7d..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/bg_BG/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index f7b581c8..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/set_up/variables.po b/docs/locale/bg_BG/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 9761d8b7..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/stages/stages.po b/docs/locale/bg_BG/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 0f7fcce5..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/bg_BG/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/bg_BG/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 57c88094..00000000 --- a/docs/locale/bg_BG/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/mautic/teams/33223/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/authentication/authentication.po b/docs/locale/ca_ES/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 3472a50a..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/builders/creating_themes.po b/docs/locale/ca_ES/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 3bbfcf1a..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/ca_ES/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 75f37e2e..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/ca_ES/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index a85f3fc0..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/ca_ES/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 5050ff62..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/ca_ES/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 99a8e54c..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/ca_ES/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index f9de867a..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/ca_ES/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index e2891826..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/categories/categories-overview.po b/docs/locale/ca_ES/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index b15b9982..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/channels/emails.po b/docs/locale/ca_ES/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 0a04eff8..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/channels/focus_items.po b/docs/locale/ca_ES/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 63beaa1f..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/ca_ES/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 1d62c4a5..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/channels/push_notifications.po b/docs/locale/ca_ES/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index eda15c1e..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/channels/sms.po b/docs/locale/ca_ES/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 73d58f78..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/ca_ES/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 787ebe28..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/channels/utm_tags.po b/docs/locale/ca_ES/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 3a6a2190..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/channels/web_notifications.po b/docs/locale/ca_ES/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 2c8c9f2d..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/companies/companies_overview.po b/docs/locale/ca_ES/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 1038fbd3..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/components/assets.po b/docs/locale/ca_ES/LC_MESSAGES/components/assets.po deleted file mode 100644 index d3cdd427..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/ca_ES/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index b092fa6e..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/components/forms.po b/docs/locale/ca_ES/LC_MESSAGES/components/forms.po deleted file mode 100644 index 0e6f548f..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/components/landing_pages.po b/docs/locale/ca_ES/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 243ced8e..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/configuration/settings.po b/docs/locale/ca_ES/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 2a80f45c..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/ca_ES/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 66f5e81d..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/ca_ES/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index bdbc4d1f..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/contributing/contributing.po b/docs/locale/ca_ES/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index ba69d5a5..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/ca_ES/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 9a4a5cd0..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/ca_ES/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 9c284eec..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/ca_ES/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index bbc48bf4..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/ca_ES/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 74465881..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/ca_ES/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 02dddef1..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/index.po b/docs/locale/ca_ES/LC_MESSAGES/index.po deleted file mode 100644 index 35cb1608..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/ca_ES/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 66a119d2..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/overview/overview.po b/docs/locale/ca_ES/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 6c04b878..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/plugins/twilio.po b/docs/locale/ca_ES/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 39320553..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/plugins/twitter.po b/docs/locale/ca_ES/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 3882b3bb..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/points/points.po b/docs/locale/ca_ES/LC_MESSAGES/points/points.po deleted file mode 100644 index 364b2d57..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/reports/reports.po b/docs/locale/ca_ES/LC_MESSAGES/reports/reports.po deleted file mode 100644 index a93325ab..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/ca_ES/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index b3264bbe..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/ca_ES/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 76614397..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/ca_ES/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index b22dfade..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/ca_ES/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index a16e42d4..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/set_up/variables.po b/docs/locale/ca_ES/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index b33f605d..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/stages/stages.po b/docs/locale/ca_ES/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 03c79e73..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/ca_ES/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/ca_ES/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 5ee9a822..00000000 --- a/docs/locale/ca_ES/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/mautic/teams/33223/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/authentication/authentication.po b/docs/locale/cmn/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 36c7a147..00000000 --- a/docs/locale/cmn/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/builders/creating_themes.po b/docs/locale/cmn/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 6b96b847..00000000 --- a/docs/locale/cmn/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/cmn/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 250ca4d1..00000000 --- a/docs/locale/cmn/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/cmn/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index a7a955dd..00000000 --- a/docs/locale/cmn/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/cmn/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index a8eec1e9..00000000 --- a/docs/locale/cmn/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/cmn/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 6bd6d89f..00000000 --- a/docs/locale/cmn/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/cmn/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 1fd17b74..00000000 --- a/docs/locale/cmn/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/cmn/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 72079ddf..00000000 --- a/docs/locale/cmn/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/categories/categories-overview.po b/docs/locale/cmn/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 908ab95f..00000000 --- a/docs/locale/cmn/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/channels/emails.po b/docs/locale/cmn/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 2fc807b1..00000000 --- a/docs/locale/cmn/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/channels/focus_items.po b/docs/locale/cmn/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index bec75472..00000000 --- a/docs/locale/cmn/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/cmn/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 8c86d109..00000000 --- a/docs/locale/cmn/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/channels/push_notifications.po b/docs/locale/cmn/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 304959d2..00000000 --- a/docs/locale/cmn/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/channels/sms.po b/docs/locale/cmn/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 007b05f8..00000000 --- a/docs/locale/cmn/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/cmn/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index e7d76e22..00000000 --- a/docs/locale/cmn/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/channels/utm_tags.po b/docs/locale/cmn/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index af8a34b9..00000000 --- a/docs/locale/cmn/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/channels/web_notifications.po b/docs/locale/cmn/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 4f98e0a9..00000000 --- a/docs/locale/cmn/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/companies/companies_overview.po b/docs/locale/cmn/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 4c76dd61..00000000 --- a/docs/locale/cmn/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/components/assets.po b/docs/locale/cmn/LC_MESSAGES/components/assets.po deleted file mode 100644 index 23b84541..00000000 --- a/docs/locale/cmn/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/cmn/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index b894fa63..00000000 --- a/docs/locale/cmn/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/components/forms.po b/docs/locale/cmn/LC_MESSAGES/components/forms.po deleted file mode 100644 index 4a2267ec..00000000 --- a/docs/locale/cmn/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/components/landing_pages.po b/docs/locale/cmn/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index acde4545..00000000 --- a/docs/locale/cmn/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/configuration/settings.po b/docs/locale/cmn/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 1183d677..00000000 --- a/docs/locale/cmn/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/cmn/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index a4d871b3..00000000 --- a/docs/locale/cmn/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/cmn/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 23f7e982..00000000 --- a/docs/locale/cmn/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/contributing/contributing.po b/docs/locale/cmn/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index ed614571..00000000 --- a/docs/locale/cmn/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/cmn/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 79982e52..00000000 --- a/docs/locale/cmn/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/cmn/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 71e859b4..00000000 --- a/docs/locale/cmn/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/cmn/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 0db99279..00000000 --- a/docs/locale/cmn/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/cmn/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 4ec9462c..00000000 --- a/docs/locale/cmn/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/cmn/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index d05d9199..00000000 --- a/docs/locale/cmn/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/index.po b/docs/locale/cmn/LC_MESSAGES/index.po deleted file mode 100644 index 37acdd80..00000000 --- a/docs/locale/cmn/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/cmn/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index ad9d1ca8..00000000 --- a/docs/locale/cmn/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/overview/overview.po b/docs/locale/cmn/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 1c821dec..00000000 --- a/docs/locale/cmn/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/plugins/twilio.po b/docs/locale/cmn/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 5166a8f5..00000000 --- a/docs/locale/cmn/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/plugins/twitter.po b/docs/locale/cmn/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index d67a3f2b..00000000 --- a/docs/locale/cmn/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/points/points.po b/docs/locale/cmn/LC_MESSAGES/points/points.po deleted file mode 100644 index f3549c33..00000000 --- a/docs/locale/cmn/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/reports/reports.po b/docs/locale/cmn/LC_MESSAGES/reports/reports.po deleted file mode 100644 index ba89b21c..00000000 --- a/docs/locale/cmn/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/cmn/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 1a0d84ee..00000000 --- a/docs/locale/cmn/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/cmn/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index a4f25def..00000000 --- a/docs/locale/cmn/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/cmn/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index cb20a815..00000000 --- a/docs/locale/cmn/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/cmn/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 1d3bc1a5..00000000 --- a/docs/locale/cmn/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/set_up/variables.po b/docs/locale/cmn/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index b58a6fc5..00000000 --- a/docs/locale/cmn/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/stages/stages.po b/docs/locale/cmn/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 4a792dd4..00000000 --- a/docs/locale/cmn/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/cmn/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/cmn/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 0f91b66f..00000000 --- a/docs/locale/cmn/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mautic/teams/33223/cmn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cmn\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/authentication/authentication.po b/docs/locale/cs/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 145016ac..00000000 --- a/docs/locale/cs/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/builders/creating_themes.po b/docs/locale/cs/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 0bdb2f81..00000000 --- a/docs/locale/cs/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/cs/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 3ec3b760..00000000 --- a/docs/locale/cs/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/cs/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index c0094206..00000000 --- a/docs/locale/cs/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/cs/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 92fb3e36..00000000 --- a/docs/locale/cs/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/cs/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 13a6e8b4..00000000 --- a/docs/locale/cs/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/cs/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index d28776fe..00000000 --- a/docs/locale/cs/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/cs/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 95f15509..00000000 --- a/docs/locale/cs/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/categories/categories-overview.po b/docs/locale/cs/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 1b82061c..00000000 --- a/docs/locale/cs/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/channels/emails.po b/docs/locale/cs/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 36a5205c..00000000 --- a/docs/locale/cs/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/channels/focus_items.po b/docs/locale/cs/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index be75a566..00000000 --- a/docs/locale/cs/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/cs/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 664a89f5..00000000 --- a/docs/locale/cs/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/channels/push_notifications.po b/docs/locale/cs/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 22883e82..00000000 --- a/docs/locale/cs/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/channels/sms.po b/docs/locale/cs/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 54ef8fe8..00000000 --- a/docs/locale/cs/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/cs/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 19544f68..00000000 --- a/docs/locale/cs/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/channels/utm_tags.po b/docs/locale/cs/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 65a82067..00000000 --- a/docs/locale/cs/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/channels/web_notifications.po b/docs/locale/cs/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 185f4263..00000000 --- a/docs/locale/cs/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/companies/companies_overview.po b/docs/locale/cs/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index dc64bdf9..00000000 --- a/docs/locale/cs/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/components/assets.po b/docs/locale/cs/LC_MESSAGES/components/assets.po deleted file mode 100644 index 8d1e5881..00000000 --- a/docs/locale/cs/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/cs/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 89fe86ef..00000000 --- a/docs/locale/cs/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/components/forms.po b/docs/locale/cs/LC_MESSAGES/components/forms.po deleted file mode 100644 index f6e399de..00000000 --- a/docs/locale/cs/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/components/landing_pages.po b/docs/locale/cs/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index b7cb3a39..00000000 --- a/docs/locale/cs/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/configuration/settings.po b/docs/locale/cs/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index aac3a492..00000000 --- a/docs/locale/cs/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/cs/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index f44abb51..00000000 --- a/docs/locale/cs/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/cs/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 3dcb4288..00000000 --- a/docs/locale/cs/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/contributing/contributing.po b/docs/locale/cs/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 51fe6f5a..00000000 --- a/docs/locale/cs/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/cs/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index ab7d404e..00000000 --- a/docs/locale/cs/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/cs/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 19bc7289..00000000 --- a/docs/locale/cs/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/cs/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 6425489f..00000000 --- a/docs/locale/cs/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/cs/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 9606e5f8..00000000 --- a/docs/locale/cs/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/cs/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index ab3f476b..00000000 --- a/docs/locale/cs/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/index.po b/docs/locale/cs/LC_MESSAGES/index.po deleted file mode 100644 index 69c66b7b..00000000 --- a/docs/locale/cs/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/cs/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 77ce2028..00000000 --- a/docs/locale/cs/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/overview/overview.po b/docs/locale/cs/LC_MESSAGES/overview/overview.po deleted file mode 100644 index fd8067d0..00000000 --- a/docs/locale/cs/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/plugins/twilio.po b/docs/locale/cs/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 4e9c5cd2..00000000 --- a/docs/locale/cs/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/plugins/twitter.po b/docs/locale/cs/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index da14e3c7..00000000 --- a/docs/locale/cs/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/points/points.po b/docs/locale/cs/LC_MESSAGES/points/points.po deleted file mode 100644 index 691b123c..00000000 --- a/docs/locale/cs/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/reports/reports.po b/docs/locale/cs/LC_MESSAGES/reports/reports.po deleted file mode 100644 index baeb7b7e..00000000 --- a/docs/locale/cs/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/cs/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 17cdd634..00000000 --- a/docs/locale/cs/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/cs/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index e1f96710..00000000 --- a/docs/locale/cs/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/cs/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index af7d184d..00000000 --- a/docs/locale/cs/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/cs/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 688177fd..00000000 --- a/docs/locale/cs/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/set_up/variables.po b/docs/locale/cs/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 1e8ca38e..00000000 --- a/docs/locale/cs/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/stages/stages.po b/docs/locale/cs/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 422e41b2..00000000 --- a/docs/locale/cs/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/cs/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/cs/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 0fd40cd7..00000000 --- a/docs/locale/cs/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (https://www.transifex.com/mautic/teams/33223/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/authentication/authentication.po b/docs/locale/cs_CZ/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 052fefc6..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/builders/creating_themes.po b/docs/locale/cs_CZ/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index c3b4694e..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/cs_CZ/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 9b8acc9e..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/cs_CZ/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 44faf801..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/cs_CZ/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 87737c01..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/cs_CZ/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 844568a4..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/cs_CZ/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 84759938..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/cs_CZ/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 0f2b0fb2..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/categories/categories-overview.po b/docs/locale/cs_CZ/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index d252a0db..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/channels/emails.po b/docs/locale/cs_CZ/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 3c1e4ced..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/channels/focus_items.po b/docs/locale/cs_CZ/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 25eb5dda..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/cs_CZ/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 5a4cdd0c..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/channels/push_notifications.po b/docs/locale/cs_CZ/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 9f5b9a3b..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/channels/sms.po b/docs/locale/cs_CZ/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 87da27e5..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/cs_CZ/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index baa4a8ba..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/channels/utm_tags.po b/docs/locale/cs_CZ/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 969cc2ce..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/channels/web_notifications.po b/docs/locale/cs_CZ/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 96358496..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/companies/companies_overview.po b/docs/locale/cs_CZ/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 08012602..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/components/assets.po b/docs/locale/cs_CZ/LC_MESSAGES/components/assets.po deleted file mode 100644 index 2521edb5..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/cs_CZ/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 615f8d7d..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/components/forms.po b/docs/locale/cs_CZ/LC_MESSAGES/components/forms.po deleted file mode 100644 index d753d625..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/components/landing_pages.po b/docs/locale/cs_CZ/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 21f76202..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/configuration/settings.po b/docs/locale/cs_CZ/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 5b8779fc..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/cs_CZ/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index deb23c8f..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/cs_CZ/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index c49fd228..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/contributing/contributing.po b/docs/locale/cs_CZ/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 29bd1fce..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/cs_CZ/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 1d5e1449..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/cs_CZ/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index ee98f5ba..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/cs_CZ/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 3106d4fd..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/cs_CZ/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 31645ad8..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/cs_CZ/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 1a0d7e31..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/index.po b/docs/locale/cs_CZ/LC_MESSAGES/index.po deleted file mode 100644 index 635ccae3..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/cs_CZ/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 3845254b..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/overview/overview.po b/docs/locale/cs_CZ/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 6e54a21c..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/plugins/twilio.po b/docs/locale/cs_CZ/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 6ca608ad..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/plugins/twitter.po b/docs/locale/cs_CZ/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 56c90a36..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/points/points.po b/docs/locale/cs_CZ/LC_MESSAGES/points/points.po deleted file mode 100644 index bda5dbd3..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/reports/reports.po b/docs/locale/cs_CZ/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 7af0ecef..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/cs_CZ/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 9ba934da..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/cs_CZ/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index bbac707d..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/cs_CZ/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 50e62e4f..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/cs_CZ/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index c1c1ca15..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/set_up/variables.po b/docs/locale/cs_CZ/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 6a3f7517..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/stages/stages.po b/docs/locale/cs_CZ/LC_MESSAGES/stages/stages.po deleted file mode 100644 index bb25110b..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/cs_CZ/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/cs_CZ/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 40fdf175..00000000 --- a/docs/locale/cs_CZ/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Czech (Czech Republic) (https://www.transifex.com/mautic/teams/33223/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/authentication/authentication.po b/docs/locale/da/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 6e67ca0e..00000000 --- a/docs/locale/da/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/builders/creating_themes.po b/docs/locale/da/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 5b3ff0fd..00000000 --- a/docs/locale/da/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/da/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index e4de5c26..00000000 --- a/docs/locale/da/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/da/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 1a2c528f..00000000 --- a/docs/locale/da/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/da/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 1aa44e29..00000000 --- a/docs/locale/da/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/da/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 5d03f9e5..00000000 --- a/docs/locale/da/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/da/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 5c37143f..00000000 --- a/docs/locale/da/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/da/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index a182fdd9..00000000 --- a/docs/locale/da/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/categories/categories-overview.po b/docs/locale/da/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 10424569..00000000 --- a/docs/locale/da/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/channels/emails.po b/docs/locale/da/LC_MESSAGES/channels/emails.po deleted file mode 100644 index fd5a2ba0..00000000 --- a/docs/locale/da/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/channels/focus_items.po b/docs/locale/da/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 5986d05b..00000000 --- a/docs/locale/da/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/da/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index a54ac485..00000000 --- a/docs/locale/da/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/channels/push_notifications.po b/docs/locale/da/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 835772e3..00000000 --- a/docs/locale/da/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/channels/sms.po b/docs/locale/da/LC_MESSAGES/channels/sms.po deleted file mode 100644 index f081a489..00000000 --- a/docs/locale/da/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/da/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 07782a9c..00000000 --- a/docs/locale/da/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/channels/utm_tags.po b/docs/locale/da/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 57e40d95..00000000 --- a/docs/locale/da/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/channels/web_notifications.po b/docs/locale/da/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 169e01b5..00000000 --- a/docs/locale/da/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/companies/companies_overview.po b/docs/locale/da/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index bb43a56b..00000000 --- a/docs/locale/da/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/components/assets.po b/docs/locale/da/LC_MESSAGES/components/assets.po deleted file mode 100644 index b2c05153..00000000 --- a/docs/locale/da/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/da/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index fc41f997..00000000 --- a/docs/locale/da/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/components/forms.po b/docs/locale/da/LC_MESSAGES/components/forms.po deleted file mode 100644 index e90f5032..00000000 --- a/docs/locale/da/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/components/landing_pages.po b/docs/locale/da/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 74351812..00000000 --- a/docs/locale/da/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/configuration/settings.po b/docs/locale/da/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 7c67decb..00000000 --- a/docs/locale/da/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/da/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 2b6d0f05..00000000 --- a/docs/locale/da/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/da/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 60f43a09..00000000 --- a/docs/locale/da/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/contributing/contributing.po b/docs/locale/da/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 8598ca66..00000000 --- a/docs/locale/da/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/da/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index d7514413..00000000 --- a/docs/locale/da/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/da/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index b4a70d9a..00000000 --- a/docs/locale/da/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/da/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index c484b1d9..00000000 --- a/docs/locale/da/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/da/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index b03893c0..00000000 --- a/docs/locale/da/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/da/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 5c4051be..00000000 --- a/docs/locale/da/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/index.po b/docs/locale/da/LC_MESSAGES/index.po deleted file mode 100644 index 1905a94b..00000000 --- a/docs/locale/da/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/da/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index abd41ae9..00000000 --- a/docs/locale/da/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/overview/overview.po b/docs/locale/da/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 46d009d1..00000000 --- a/docs/locale/da/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/plugins/twilio.po b/docs/locale/da/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 93992201..00000000 --- a/docs/locale/da/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/plugins/twitter.po b/docs/locale/da/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index babe1e8d..00000000 --- a/docs/locale/da/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/points/points.po b/docs/locale/da/LC_MESSAGES/points/points.po deleted file mode 100644 index 39bded34..00000000 --- a/docs/locale/da/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/reports/reports.po b/docs/locale/da/LC_MESSAGES/reports/reports.po deleted file mode 100644 index a837648c..00000000 --- a/docs/locale/da/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/da/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 9a3b6dd1..00000000 --- a/docs/locale/da/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/da/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index d4a847a7..00000000 --- a/docs/locale/da/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/da/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index f76d46ea..00000000 --- a/docs/locale/da/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/da/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 632f08e1..00000000 --- a/docs/locale/da/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/set_up/variables.po b/docs/locale/da/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 5494d902..00000000 --- a/docs/locale/da/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/stages/stages.po b/docs/locale/da/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 658aa9f2..00000000 --- a/docs/locale/da/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/da/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/da/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 13bd80ea..00000000 --- a/docs/locale/da/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Danish (https://www.transifex.com/mautic/teams/33223/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/authentication/authentication.po b/docs/locale/de/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 506b5724..00000000 --- a/docs/locale/de/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/builders/creating_themes.po b/docs/locale/de/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 689f5953..00000000 --- a/docs/locale/de/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/de/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 8cc404ed..00000000 --- a/docs/locale/de/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/de/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index d6591146..00000000 --- a/docs/locale/de/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/de/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index c8bfc7f4..00000000 --- a/docs/locale/de/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/de/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 80cc0be2..00000000 --- a/docs/locale/de/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/de/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 23033aa4..00000000 --- a/docs/locale/de/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/de/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 8d3fcd06..00000000 --- a/docs/locale/de/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/categories/categories-overview.po b/docs/locale/de/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index e59232fb..00000000 --- a/docs/locale/de/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/channels/emails.po b/docs/locale/de/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 0faf9501..00000000 --- a/docs/locale/de/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/channels/focus_items.po b/docs/locale/de/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 36e48397..00000000 --- a/docs/locale/de/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/de/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 1b220a0f..00000000 --- a/docs/locale/de/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/channels/push_notifications.po b/docs/locale/de/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index be25fcde..00000000 --- a/docs/locale/de/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/channels/sms.po b/docs/locale/de/LC_MESSAGES/channels/sms.po deleted file mode 100644 index fda5fb8a..00000000 --- a/docs/locale/de/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/de/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index faa86f2c..00000000 --- a/docs/locale/de/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/channels/utm_tags.po b/docs/locale/de/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index bb86c3e5..00000000 --- a/docs/locale/de/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/channels/web_notifications.po b/docs/locale/de/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 3676d151..00000000 --- a/docs/locale/de/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/companies/companies_overview.po b/docs/locale/de/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 3514cd23..00000000 --- a/docs/locale/de/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/components/assets.po b/docs/locale/de/LC_MESSAGES/components/assets.po deleted file mode 100644 index 722ebe1a..00000000 --- a/docs/locale/de/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/de/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index ef2581a7..00000000 --- a/docs/locale/de/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/components/forms.po b/docs/locale/de/LC_MESSAGES/components/forms.po deleted file mode 100644 index d3813e98..00000000 --- a/docs/locale/de/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/components/landing_pages.po b/docs/locale/de/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index dba08b44..00000000 --- a/docs/locale/de/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/configuration/settings.po b/docs/locale/de/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 9c6f5a25..00000000 --- a/docs/locale/de/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/de/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 9dce0fa6..00000000 --- a/docs/locale/de/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/de/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 89045af6..00000000 --- a/docs/locale/de/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/contributing/contributing.po b/docs/locale/de/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index c5a940e9..00000000 --- a/docs/locale/de/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/de/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 1730437f..00000000 --- a/docs/locale/de/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/de/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 9be948e0..00000000 --- a/docs/locale/de/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/de/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 06b9567f..00000000 --- a/docs/locale/de/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/de/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 34f7f2d7..00000000 --- a/docs/locale/de/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/de/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index e3896fff..00000000 --- a/docs/locale/de/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/index.po b/docs/locale/de/LC_MESSAGES/index.po deleted file mode 100644 index 8dffa475..00000000 --- a/docs/locale/de/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/de/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 948ef12b..00000000 --- a/docs/locale/de/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/overview/overview.po b/docs/locale/de/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 2c1e45ef..00000000 --- a/docs/locale/de/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/plugins/twilio.po b/docs/locale/de/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 4c95858d..00000000 --- a/docs/locale/de/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/plugins/twitter.po b/docs/locale/de/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 38257737..00000000 --- a/docs/locale/de/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/points/points.po b/docs/locale/de/LC_MESSAGES/points/points.po deleted file mode 100644 index f6841b79..00000000 --- a/docs/locale/de/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/reports/reports.po b/docs/locale/de/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 9caa999d..00000000 --- a/docs/locale/de/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/de/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 2f2a05a5..00000000 --- a/docs/locale/de/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/de/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index d347326c..00000000 --- a/docs/locale/de/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/de/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index a954add9..00000000 --- a/docs/locale/de/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/de/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 131c106e..00000000 --- a/docs/locale/de/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/set_up/variables.po b/docs/locale/de/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 0299785b..00000000 --- a/docs/locale/de/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/stages/stages.po b/docs/locale/de/LC_MESSAGES/stages/stages.po deleted file mode 100644 index ed3f96e5..00000000 --- a/docs/locale/de/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/de/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/de/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index cc505cb5..00000000 --- a/docs/locale/de/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (https://www.transifex.com/mautic/teams/33223/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/authentication/authentication.po b/docs/locale/de_AT/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 5820ded4..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/builders/creating_themes.po b/docs/locale/de_AT/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 8130e2a7..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/de_AT/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index ca401898..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/de_AT/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 77a9ab24..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/de_AT/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 3e2f1dd2..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/de_AT/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 595cf961..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/de_AT/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index adee5634..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/de_AT/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 97530fcb..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/categories/categories-overview.po b/docs/locale/de_AT/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 64355bbd..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/channels/emails.po b/docs/locale/de_AT/LC_MESSAGES/channels/emails.po deleted file mode 100644 index cd88685f..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/channels/focus_items.po b/docs/locale/de_AT/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 3f78e149..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/de_AT/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index f59e0e06..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/channels/push_notifications.po b/docs/locale/de_AT/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 34e072be..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/channels/sms.po b/docs/locale/de_AT/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 4fd644b3..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/de_AT/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 36e4946b..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/channels/utm_tags.po b/docs/locale/de_AT/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 62db8e14..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/channels/web_notifications.po b/docs/locale/de_AT/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 3c9f4817..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/companies/companies_overview.po b/docs/locale/de_AT/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index b0625125..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/components/assets.po b/docs/locale/de_AT/LC_MESSAGES/components/assets.po deleted file mode 100644 index 2f32897a..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/de_AT/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 41f5013c..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/components/forms.po b/docs/locale/de_AT/LC_MESSAGES/components/forms.po deleted file mode 100644 index 47c12b53..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/components/landing_pages.po b/docs/locale/de_AT/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 47e5d6ff..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/configuration/settings.po b/docs/locale/de_AT/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 991bd25e..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/de_AT/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 00024e31..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/de_AT/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 12a5c7eb..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/contributing/contributing.po b/docs/locale/de_AT/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 02ebf88a..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/de_AT/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index af97433c..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/de_AT/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 952c99dc..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/de_AT/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 5cc50720..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/de_AT/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 208f69f0..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/de_AT/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 3f6463a2..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/index.po b/docs/locale/de_AT/LC_MESSAGES/index.po deleted file mode 100644 index 7fa498c9..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/de_AT/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 168e9c55..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/overview/overview.po b/docs/locale/de_AT/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 2fc6cd75..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/plugins/twilio.po b/docs/locale/de_AT/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 24a35230..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/plugins/twitter.po b/docs/locale/de_AT/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 72268c24..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/points/points.po b/docs/locale/de_AT/LC_MESSAGES/points/points.po deleted file mode 100644 index 15aa5883..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/reports/reports.po b/docs/locale/de_AT/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 17f63337..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/de_AT/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 24481127..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/de_AT/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index cb8b3a17..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/de_AT/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 41070159..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/de_AT/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 8074726d..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/set_up/variables.po b/docs/locale/de_AT/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 95c4ac03..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/stages/stages.po b/docs/locale/de_AT/LC_MESSAGES/stages/stages.po deleted file mode 100644 index ee52495d..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/de_AT/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/de_AT/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index f29403b3..00000000 --- a/docs/locale/de_AT/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Austria) (https://www.transifex.com/mautic/teams/33223/de_AT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_AT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/authentication/authentication.po b/docs/locale/de_CH/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 65a30767..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/builders/creating_themes.po b/docs/locale/de_CH/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 90b460e6..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/de_CH/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 3e91055b..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/de_CH/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index c40cb755..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/de_CH/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index d23be64d..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/de_CH/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 1fdcefef..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/de_CH/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 8a2be07e..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/de_CH/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 25f7daca..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/categories/categories-overview.po b/docs/locale/de_CH/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 7491119d..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/channels/emails.po b/docs/locale/de_CH/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 44320f8f..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/channels/focus_items.po b/docs/locale/de_CH/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 309248f2..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/de_CH/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 0dd9f39f..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/channels/push_notifications.po b/docs/locale/de_CH/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 3631fe55..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/channels/sms.po b/docs/locale/de_CH/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 21e4d183..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/de_CH/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 81f43b0b..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/channels/utm_tags.po b/docs/locale/de_CH/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 973e5f4f..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/channels/web_notifications.po b/docs/locale/de_CH/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index e7d89c04..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/companies/companies_overview.po b/docs/locale/de_CH/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 45e38317..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/components/assets.po b/docs/locale/de_CH/LC_MESSAGES/components/assets.po deleted file mode 100644 index f6951abb..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/de_CH/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 490946db..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/components/forms.po b/docs/locale/de_CH/LC_MESSAGES/components/forms.po deleted file mode 100644 index 4b3a98cf..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/components/landing_pages.po b/docs/locale/de_CH/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 01b6047b..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/configuration/settings.po b/docs/locale/de_CH/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 7c17fd99..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/de_CH/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index a3eae42e..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/de_CH/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index b2510721..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/contributing/contributing.po b/docs/locale/de_CH/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 971307f2..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/de_CH/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 5226e45d..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/de_CH/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 70946e50..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/de_CH/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index cd846857..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/de_CH/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 257198fa..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/de_CH/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index e7b8dea7..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/index.po b/docs/locale/de_CH/LC_MESSAGES/index.po deleted file mode 100644 index 3fbf45ec..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/de_CH/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 74a65979..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/overview/overview.po b/docs/locale/de_CH/LC_MESSAGES/overview/overview.po deleted file mode 100644 index cfc41a84..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/plugins/twilio.po b/docs/locale/de_CH/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index f338199a..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/plugins/twitter.po b/docs/locale/de_CH/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 449093da..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/points/points.po b/docs/locale/de_CH/LC_MESSAGES/points/points.po deleted file mode 100644 index 0c918ecf..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/reports/reports.po b/docs/locale/de_CH/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 55c047a3..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/de_CH/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 9da680bb..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/de_CH/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index eff86e5f..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/de_CH/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index e2babbf0..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/de_CH/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index ab125048..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/set_up/variables.po b/docs/locale/de_CH/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 3b0d78d4..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/stages/stages.po b/docs/locale/de_CH/LC_MESSAGES/stages/stages.po deleted file mode 100644 index ee56da76..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/de_CH/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/de_CH/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index b96a3735..00000000 --- a/docs/locale/de_CH/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Switzerland) (https://www.transifex.com/mautic/teams/33223/de_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_CH\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/authentication/authentication.po b/docs/locale/de_DE/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index e38c81a9..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/builders/creating_themes.po b/docs/locale/de_DE/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 49d338e2..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/de_DE/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 11aa044f..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/de_DE/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index a5350af3..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/de_DE/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 5b4b1f88..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/de_DE/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index cf6d14df..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/de_DE/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 9780a7ba..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/de_DE/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 9ca66255..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/categories/categories-overview.po b/docs/locale/de_DE/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 70e23feb..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/channels/emails.po b/docs/locale/de_DE/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 745721de..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/channels/focus_items.po b/docs/locale/de_DE/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 0410d891..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/de_DE/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index d665a55a..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/channels/push_notifications.po b/docs/locale/de_DE/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index a6cd82a7..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/channels/sms.po b/docs/locale/de_DE/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 9ba53437..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/de_DE/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 9e49e0a1..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/channels/utm_tags.po b/docs/locale/de_DE/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 83565f20..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/channels/web_notifications.po b/docs/locale/de_DE/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index bfb2a4d4..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/companies/companies_overview.po b/docs/locale/de_DE/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index ef1e6340..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/components/assets.po b/docs/locale/de_DE/LC_MESSAGES/components/assets.po deleted file mode 100644 index d328cd56..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/de_DE/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index fd9b6295..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/components/forms.po b/docs/locale/de_DE/LC_MESSAGES/components/forms.po deleted file mode 100644 index 3c5de124..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/components/landing_pages.po b/docs/locale/de_DE/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 342bbf6f..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/configuration/settings.po b/docs/locale/de_DE/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 4dec2799..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/de_DE/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 662eed85..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/de_DE/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 40860416..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/contributing/contributing.po b/docs/locale/de_DE/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index c3a0e2e7..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/de_DE/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index ebfc540d..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/de_DE/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 461ea140..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/de_DE/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 3727deef..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/de_DE/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index d1f58b72..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/de_DE/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index f6f1f8b0..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/index.po b/docs/locale/de_DE/LC_MESSAGES/index.po deleted file mode 100644 index 6c60e5ec..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/de_DE/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 86064c25..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/overview/overview.po b/docs/locale/de_DE/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 3fc00634..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/plugins/twilio.po b/docs/locale/de_DE/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index dbc5a69e..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/plugins/twitter.po b/docs/locale/de_DE/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index f551f835..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/points/points.po b/docs/locale/de_DE/LC_MESSAGES/points/points.po deleted file mode 100644 index 4e2fbf8d..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/reports/reports.po b/docs/locale/de_DE/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 99208695..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/de_DE/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 5a92e02b..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/de_DE/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index ad8f236b..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/de_DE/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 4074be4c..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/de_DE/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 19de4fc9..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/set_up/variables.po b/docs/locale/de_DE/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index e064bebd..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/stages/stages.po b/docs/locale/de_DE/LC_MESSAGES/stages/stages.po deleted file mode 100644 index effa033a..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/de_DE/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/de_DE/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index b1767068..00000000 --- a/docs/locale/de_DE/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: German (Germany) (https://www.transifex.com/mautic/teams/33223/de_DE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/authentication/authentication.po b/docs/locale/el/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 4f17943c..00000000 --- a/docs/locale/el/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/builders/creating_themes.po b/docs/locale/el/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 1ce03e06..00000000 --- a/docs/locale/el/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/el/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index f0695985..00000000 --- a/docs/locale/el/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/el/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 2e0bda3d..00000000 --- a/docs/locale/el/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/el/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 4d145d9a..00000000 --- a/docs/locale/el/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/el/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 12e300aa..00000000 --- a/docs/locale/el/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/el/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index bd5a42a1..00000000 --- a/docs/locale/el/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/el/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index dce2e9a0..00000000 --- a/docs/locale/el/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/categories/categories-overview.po b/docs/locale/el/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 0002e67f..00000000 --- a/docs/locale/el/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/channels/emails.po b/docs/locale/el/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 6116edc1..00000000 --- a/docs/locale/el/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/channels/focus_items.po b/docs/locale/el/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 32d60f10..00000000 --- a/docs/locale/el/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/el/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 73f7dbe4..00000000 --- a/docs/locale/el/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/channels/push_notifications.po b/docs/locale/el/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 0015b24e..00000000 --- a/docs/locale/el/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/channels/sms.po b/docs/locale/el/LC_MESSAGES/channels/sms.po deleted file mode 100644 index a357b880..00000000 --- a/docs/locale/el/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/el/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index ba1b8f36..00000000 --- a/docs/locale/el/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/channels/utm_tags.po b/docs/locale/el/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 69b0ef14..00000000 --- a/docs/locale/el/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/channels/web_notifications.po b/docs/locale/el/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 63bf650a..00000000 --- a/docs/locale/el/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/companies/companies_overview.po b/docs/locale/el/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index b4282fd5..00000000 --- a/docs/locale/el/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/components/assets.po b/docs/locale/el/LC_MESSAGES/components/assets.po deleted file mode 100644 index 1f82cd4f..00000000 --- a/docs/locale/el/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/el/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index c78ed856..00000000 --- a/docs/locale/el/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/components/forms.po b/docs/locale/el/LC_MESSAGES/components/forms.po deleted file mode 100644 index 735bf047..00000000 --- a/docs/locale/el/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/components/landing_pages.po b/docs/locale/el/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index b61fd96a..00000000 --- a/docs/locale/el/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/configuration/settings.po b/docs/locale/el/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 95a20b51..00000000 --- a/docs/locale/el/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/el/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index e344054f..00000000 --- a/docs/locale/el/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/el/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index e15c78b6..00000000 --- a/docs/locale/el/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/contributing/contributing.po b/docs/locale/el/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 94bdaf57..00000000 --- a/docs/locale/el/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/el/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 658e2052..00000000 --- a/docs/locale/el/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/el/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 7eff4d61..00000000 --- a/docs/locale/el/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/el/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 7414f147..00000000 --- a/docs/locale/el/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/el/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index a806f82e..00000000 --- a/docs/locale/el/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/el/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index aa2a0890..00000000 --- a/docs/locale/el/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/index.po b/docs/locale/el/LC_MESSAGES/index.po deleted file mode 100644 index 8edd1463..00000000 --- a/docs/locale/el/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/el/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 4c0d79c6..00000000 --- a/docs/locale/el/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/overview/overview.po b/docs/locale/el/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 019589f2..00000000 --- a/docs/locale/el/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/plugins/twilio.po b/docs/locale/el/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 79d1f78a..00000000 --- a/docs/locale/el/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/plugins/twitter.po b/docs/locale/el/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 8f09d18e..00000000 --- a/docs/locale/el/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/points/points.po b/docs/locale/el/LC_MESSAGES/points/points.po deleted file mode 100644 index dde071bd..00000000 --- a/docs/locale/el/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/reports/reports.po b/docs/locale/el/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 3c90d847..00000000 --- a/docs/locale/el/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/el/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 7b27ee0b..00000000 --- a/docs/locale/el/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/el/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 501b2b63..00000000 --- a/docs/locale/el/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/el/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 840316c0..00000000 --- a/docs/locale/el/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/el/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 48482471..00000000 --- a/docs/locale/el/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/set_up/variables.po b/docs/locale/el/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 3a24023d..00000000 --- a/docs/locale/el/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/stages/stages.po b/docs/locale/el/LC_MESSAGES/stages/stages.po deleted file mode 100644 index de5a8073..00000000 --- a/docs/locale/el/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/el/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/el/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 2c0a0fc0..00000000 --- a/docs/locale/el/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Greek (https://www.transifex.com/mautic/teams/33223/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/authentication/authentication.po b/docs/locale/en_AU/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index cbb3cb66..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/builders/creating_themes.po b/docs/locale/en_AU/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 80b13b44..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/en_AU/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index d79b4215..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/en_AU/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index d8a43815..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/en_AU/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 563d5280..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/en_AU/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 7d8e06da..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/en_AU/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 1273d700..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/en_AU/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 3d12d7d6..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/categories/categories-overview.po b/docs/locale/en_AU/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 6dc56163..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/channels/emails.po b/docs/locale/en_AU/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 1bf9ba1b..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/channels/focus_items.po b/docs/locale/en_AU/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index d546cb78..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/en_AU/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 99f8d56d..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/channels/push_notifications.po b/docs/locale/en_AU/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index c9ccbbb4..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/channels/sms.po b/docs/locale/en_AU/LC_MESSAGES/channels/sms.po deleted file mode 100644 index d408d16b..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/en_AU/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 57413428..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/channels/utm_tags.po b/docs/locale/en_AU/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 4001e919..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/channels/web_notifications.po b/docs/locale/en_AU/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 3f2ac631..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/companies/companies_overview.po b/docs/locale/en_AU/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 34d9bdc0..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/components/assets.po b/docs/locale/en_AU/LC_MESSAGES/components/assets.po deleted file mode 100644 index 0c466e4a..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/en_AU/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 16b788dd..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/components/forms.po b/docs/locale/en_AU/LC_MESSAGES/components/forms.po deleted file mode 100644 index dac814e8..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/components/landing_pages.po b/docs/locale/en_AU/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index df104ab8..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/configuration/settings.po b/docs/locale/en_AU/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index d961b395..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/en_AU/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index c4186456..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/en_AU/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 61e0b4cb..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/contributing/contributing.po b/docs/locale/en_AU/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 2c7f3dfe..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/en_AU/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 3171c18d..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/en_AU/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 623ad087..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/en_AU/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 1a6a3d51..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/en_AU/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index d55f301e..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/en_AU/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 7a31fee7..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/index.po b/docs/locale/en_AU/LC_MESSAGES/index.po deleted file mode 100644 index 4c092c5b..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/en_AU/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 766e6b08..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/overview/overview.po b/docs/locale/en_AU/LC_MESSAGES/overview/overview.po deleted file mode 100644 index cfd77dc9..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/plugins/twilio.po b/docs/locale/en_AU/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index b74b3ae0..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/plugins/twitter.po b/docs/locale/en_AU/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index e5821e3d..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/points/points.po b/docs/locale/en_AU/LC_MESSAGES/points/points.po deleted file mode 100644 index 066f4c32..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/reports/reports.po b/docs/locale/en_AU/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 4b48af30..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/en_AU/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 4d292f88..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/en_AU/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 1f7dbf29..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/en_AU/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 68772ae0..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/en_AU/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 87fd534f..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/set_up/variables.po b/docs/locale/en_AU/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 1229e1e8..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/stages/stages.po b/docs/locale/en_AU/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 1850bb09..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/en_AU/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/en_AU/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 0f606fe8..00000000 --- a/docs/locale/en_AU/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (Australia) (https://www.transifex.com/mautic/teams/33223/en_AU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/authentication/authentication.po b/docs/locale/en_GB/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index c7a02623..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/builders/creating_themes.po b/docs/locale/en_GB/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index ca823d0a..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/en_GB/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 81045c4d..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/campaigns.po b/docs/locale/en_GB/LC_MESSAGES/campaigns.po deleted file mode 100644 index 7ad5c2f6..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/campaigns.po +++ /dev/null @@ -1,1437 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Ruth Cheesley , 2022 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: 2022-11-14 11:42+0000\n" -"Last-Translator: Ruth Cheesley , 2022\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../campaigns/campaign_builder.rst:4 -msgid "Using the Campaign Builder" -msgstr "Using the Campaign Builder" - -#: ../campaigns/campaign_builder.rst:8 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." - -#: ../campaigns/campaign_builder.rst:10 -msgid "To build your Campaign, perform the following steps:" -msgstr "To build your Campaign, perform the following steps:" - -#: ../campaigns/campaign_builder.rst:12 -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." - -#: ../campaigns/campaign_builder.rstNone -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "Screenshot of Campaign builder showing Contact sources" - -#: ../campaigns/campaign_builder.rst:18 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." - -#: ../campaigns/campaign_builder.rst:20 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "Select where your Campaign pulls the Contacts from:" - -#: ../campaigns/campaign_builder.rst:22 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." - -#: ../campaigns/campaign_builder.rst:24 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." - -#: ../campaigns/campaign_builder.rst:26 -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." - -#: ../campaigns/campaign_builder.rst:28 -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." - -#: ../campaigns/campaign_builder.rst:0 -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "Screenshot of Campaign builder showing multiple sources selected." - -#: ../campaigns/campaign_builder.rst:34 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" - -#: ../campaigns/campaign_builder.rstNone -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "Screenshot of Campaign builder showing the available Campaign events." - -#: ../campaigns/campaign_builder.rst:40 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." - -#: ../campaigns/campaign_builder.rst:43 -msgid "Actions" -msgstr "Actions" - -#: ../campaigns/campaign_builder.rst:44 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." - -#: ../campaigns/campaign_builder.rst:46 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "The actions that Mautic offers in a Campaign include:" - -#: ../campaigns/campaign_builder.rst:48 -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" - -#: ../campaigns/campaign_builder.rst:52 -msgid "Action" -msgstr "Action" - -#: ../campaigns/campaign_builder.rst:53 ../campaigns/campaign_builder.rst:150 -#: ../campaigns/campaign_builder.rst:172 ../campaigns/campaign_builder.rst:195 -msgid "Description" -msgstr "Description" - -#: ../campaigns/campaign_builder.rst:54 -msgid "**Add Do Not Contact**" -msgstr "**Add Do Not Contact**" - -#: ../campaigns/campaign_builder.rst:55 -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "Adds the Contact to the Do Not Contact (DNC) list" - -#: ../campaigns/campaign_builder.rst:56 -msgid "**Add to Company's score**" -msgstr "**Add to Company's score**" - -#: ../campaigns/campaign_builder.rst:57 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." - -#: ../campaigns/campaign_builder.rst:58 -msgid "**Add Company action**" -msgstr "**Add Company action**" - -#: ../campaigns/campaign_builder.rst:59 -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." - -#: ../campaigns/campaign_builder.rst:60 -msgid "**Adjust Contact Points**" -msgstr "**Adjust Contact Points**" - -#: ../campaigns/campaign_builder.rst:61 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "Adds or subtracts Points from the Contact’s Point total." - -#: ../campaigns/campaign_builder.rst:62 -msgid "**Change Campaigns**" -msgstr "**Change Campaigns**" - -#: ../campaigns/campaign_builder.rst:63 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." - -#: ../campaigns/campaign_builder.rst:64 -msgid "**Change Contact's Stage**" -msgstr "**Change Contact's Stage**" - -#: ../campaigns/campaign_builder.rst:65 -msgid "Moves a Contact to the specified Stage." -msgstr "Moves a Contact to the specified Stage." - -#: ../campaigns/campaign_builder.rst:66 -msgid "**Delete Contact**" -msgstr "**Delete Contact**" - -#: ../campaigns/campaign_builder.rst:67 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." - -#: ../campaigns/campaign_builder.rst:68 -msgid "**Jump to Event**" -msgstr "**Jump to Event**" - -#: ../campaigns/campaign_builder.rst:69 -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." - -#: ../campaigns/campaign_builder.rst:70 -msgid "**Modify Contact's Segments**" -msgstr "**Modify Contact's Segments**" - -#: ../campaigns/campaign_builder.rst:71 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." - -#: ../campaigns/campaign_builder.rst:72 -msgid "**Modify Contact's tags**" -msgstr "**Modify Contact's tags**" - -#: ../campaigns/campaign_builder.rst:73 -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." - -#: ../campaigns/campaign_builder.rst:74 -msgid "**Push Contact to Integration**" -msgstr "**Push Contact to Integration**" - -#: ../campaigns/campaign_builder.rst:75 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." - -#: ../campaigns/campaign_builder.rst:76 -msgid "**Remove Do Not Contact**" -msgstr "**Remove Do Not Contact**" - -#: ../campaigns/campaign_builder.rst:77 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "Removes the Contact from the Do Not Contact (DNC) list." - -#: ../campaigns/campaign_builder.rst:78 -msgid "**Send a Webhook**" -msgstr "**Send a Webhook**" - -#: ../campaigns/campaign_builder.rst:79 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" - -#: ../campaigns/campaign_builder.rst:80 -msgid "**Send Email**" -msgstr "**Send Email**" - -#: ../campaigns/campaign_builder.rst:81 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." - -#: ../campaigns/campaign_builder.rst:82 -msgid "**Send Email to User**" -msgstr "**Send Email to User**" - -#: ../campaigns/campaign_builder.rst:83 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." - -#: ../campaigns/campaign_builder.rst:84 -msgid "**Send Marketing Message**" -msgstr "**Send Marketing Message**" - -#: ../campaigns/campaign_builder.rst:85 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "Sends a message using the Contact's preferred Channel." - -#: ../campaigns/campaign_builder.rst:86 -msgid "**Update Contact**" -msgstr "**Update Contact**" - -#: ../campaigns/campaign_builder.rst:87 -msgid "Updates the existing Contact's fields with the specified values." -msgstr "Updates the existing Contact's fields with the specified values." - -#: ../campaigns/campaign_builder.rst:88 -msgid "**Update Contact's primary Company**" -msgstr "**Update Contact's primary Company**" - -#: ../campaigns/campaign_builder.rst:89 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." - -#: ../campaigns/campaign_builder.rst:90 -msgid "**Update Contact owner**" -msgstr "**Update Contact owner**" - -#: ../campaigns/campaign_builder.rst:91 -msgid "Updates the Contact's owner." -msgstr "Updates the Contact's owner." - -#: ../campaigns/campaign_builder.rst:96 -msgid "Notes on Campaign Actions" -msgstr "Notes on Campaign Actions" - -#: ../campaigns/campaign_builder.rst:101 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." - -#: ../campaigns/campaign_builder.rstNone -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "Screenshot of Campaign builder showing the Email send delay options." - -#: ../campaigns/campaign_builder.rst:107 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." - -#: ../campaigns/campaign_builder.rst:109 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." - -#: ../campaigns/campaign_builder.rst:112 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." - -#: ../campaigns/campaign_builder.rst:114 -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "After adding an action, you can place a decision on the Campaign." - -#: ../campaigns/campaign_builder.rst:117 -msgid "Decisions" -msgstr "Decisions" - -#: ../campaigns/campaign_builder.rst:119 -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." - -#: ../campaigns/campaign_builder.rst:121 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." - -#: ../campaigns/campaign_builder.rst:124 -msgid "Green paths" -msgstr "Green paths" - -#: ../campaigns/campaign_builder.rst:126 -msgid "Green paths indicate positive or affirmative actions." -msgstr "Green paths indicate positive or affirmative actions." - -#: ../campaigns/campaign_builder.rst:128 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." - -#: ../campaigns/campaign_builder.rst:131 -msgid "Red paths" -msgstr "Red paths" - -#: ../campaigns/campaign_builder.rst:133 -msgid "Red paths indicate non-action." -msgstr "Red paths indicate non-action." - -#: ../campaigns/campaign_builder.rst:135 -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." - -#: ../campaigns/campaign_builder.rst:137 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." - -#: ../campaigns/campaign_builder.rstNone -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "Screenshot showing Campaign decisions available in Mautic" - -#: ../campaigns/campaign_builder.rst:143 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "Here are the decisions that Mautic offers in the Campaign Builder:" - -#: ../campaigns/campaign_builder.rst:145 -msgid "Decision Actions in Mautic" -msgstr "Decision Actions in Mautic" - -#: ../campaigns/campaign_builder.rst:149 ../campaigns/campaign_builder.rst:171 -msgid "Decision" -msgstr "Decision" - -#: ../campaigns/campaign_builder.rst:151 -msgid "**Device visit**" -msgstr "**Device visit**" - -#: ../campaigns/campaign_builder.rst:152 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." - -#: ../campaigns/campaign_builder.rst:153 -msgid "**Downloads Asset**" -msgstr "**Downloads Asset**" - -#: ../campaigns/campaign_builder.rst:154 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" -"Set the options to track whether your Contact downloads specified Asset/s." - -#: ../campaigns/campaign_builder.rst:155 -msgid "**Request Dynamic Content**" -msgstr "**Request Dynamic Content**" - -#: ../campaigns/campaign_builder.rst:156 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." - -#: ../campaigns/campaign_builder.rst:157 -msgid "**Submits Form**" -msgstr "**Submits Form**" - -#: ../campaigns/campaign_builder.rst:158 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." - -#: ../campaigns/campaign_builder.rst:159 -msgid "**Visits a page**" -msgstr "**Visits a page**" - -#: ../campaigns/campaign_builder.rst:160 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." - -#: ../campaigns/campaign_builder.rst:161 -msgid "**Email-Related Decisions**" -msgstr "**Email-Related Decisions**" - -#: ../campaigns/campaign_builder.rst:162 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." - -#: ../campaigns/campaign_builder.rst:165 -msgid "Here are the decisions that are Email-related:" -msgstr "Here are the decisions that are Email-related:" - -#: ../campaigns/campaign_builder.rst:167 -msgid "Email-related Decision Actions in Mautic" -msgstr "Email-related Decision Actions in Mautic" - -#: ../campaigns/campaign_builder.rst:173 -msgid "**Opens Email**" -msgstr "**Opens Email**" - -#: ../campaigns/campaign_builder.rst:174 -msgid "Tracks whether the Contact opens the Email." -msgstr "Tracks whether the Contact opens the Email." - -#: ../campaigns/campaign_builder.rst:175 -msgid "**Clicks Email**" -msgstr "**Clicks Email**" - -#: ../campaigns/campaign_builder.rst:176 -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." - -#: ../campaigns/campaign_builder.rst:177 -msgid "**Replies to Email**" -msgstr "**Replies to Email**" - -#: ../campaigns/campaign_builder.rst:178 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." - -#: ../campaigns/campaign_builder.rst:182 -msgid "Conditions" -msgstr "Conditions" - -#: ../campaigns/campaign_builder.rst:184 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." - -#: ../campaigns/campaign_builder.rst:186 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." - -#: ../campaigns/campaign_builder.rst:188 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" - -#: ../campaigns/campaign_builder.rst:190 -msgid "Condition Actions in Mautic" -msgstr "Condition Actions in Mautic" - -#: ../campaigns/campaign_builder.rst:194 -msgid "Condition" -msgstr "Condition" - -#: ../campaigns/campaign_builder.rst:196 -msgid "**Contact Campaigns**" -msgstr "**Contact Campaigns**" - -#: ../campaigns/campaign_builder.rst:197 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "Checks if the Contact is a member of another Campaign." - -#: ../campaigns/campaign_builder.rst:198 -msgid "**Contact device**" -msgstr "**Contact device**" - -#: ../campaigns/campaign_builder.rst:199 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." - -#: ../campaigns/campaign_builder.rst:200 -msgid "**Contact field value**" -msgstr "**Contact field value**" - -#: ../campaigns/campaign_builder.rst:201 -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." - -#: ../campaigns/campaign_builder.rst:202 -msgid "**Contact owner**" -msgstr "**Contact owner**" - -#: ../campaigns/campaign_builder.rst:203 -msgid "Checks if the selected User is the Contact's owner." -msgstr "Checks if the selected User is the Contact's owner." - -#: ../campaigns/campaign_builder.rst:204 -msgid "**Contact Segments**" -msgstr "**Contact Segments**" - -#: ../campaigns/campaign_builder.rst:205 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "Checks if the Contact is a member of selected Segments." - -#: ../campaigns/campaign_builder.rst:206 -msgid "**Contact Tags**" -msgstr "**Contact Tags**" - -#: ../campaigns/campaign_builder.rst:207 -msgid "Checks if specified Tags are on the Contact record." -msgstr "Checks if specified Tags are on the Contact record." - -#: ../campaigns/campaign_builder.rst:208 -msgid "**Form field value**" -msgstr "**Form field value**" - -#: ../campaigns/campaign_builder.rst:209 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." - -#: ../campaigns/campaign_builder.rst:210 -msgid "**Has active notification**" -msgstr "**Has active notification**" - -#: ../campaigns/campaign_builder.rst:211 -msgid "Checks if the Contact has an active web notification." -msgstr "Checks if the Contact has an active web notification." - -#: ../campaigns/campaign_builder.rst:212 -msgid "**Has valid Email address**" -msgstr "**Has valid Email address**" - -#: ../campaigns/campaign_builder.rst:213 -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." - -#: ../campaigns/campaign_builder.rst:216 -msgid "Notes on delayed conditions and dates" -msgstr "Notes on delayed conditions and dates" - -#: ../campaigns/campaign_builder.rst:217 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." - -#: ../campaigns/campaign_builder.rst:220 -msgid "Using a custom date field to trigger a Campaign" -msgstr "Using a custom date field to trigger a Campaign" - -#: ../campaigns/campaign_builder.rst:221 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." - -#: ../campaigns/campaign_builder.rst:223 -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" -"In the Anniversary option, you can only enter the day and month values." - -#: ../campaigns/campaign_builder.rst:225 -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." - -#: ../campaigns/campaign_builder.rst:227 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" - -#: ../campaigns/campaign_builder.rst:229 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "create a Segment with a filter where the date field = ``TODAY``." - -#: ../campaigns/campaign_builder.rst:230 -msgid "initiate the Campaign based on that Segment." -msgstr "initiate the Campaign based on that Segment." - -#: ../campaigns/campaign_builder.rst:231 -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "as Contacts move in and out of the Segment, the Campaign runs." - -#: ../campaigns/campaign_builder.rst:232 -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "you can eliminate the condition since the Segment is changing daily." - -#: ../campaigns/campaign_builder.rst:234 -msgid "This **doesn't work** for the Anniversary option." -msgstr "This **doesn't work** for the Anniversary option." - -#: ../campaigns/campaign_builder.rst:236 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." - -#: ../campaigns/campaign_builder.rst:241 -msgid "Triggering Campaign events" -msgstr "Triggering Campaign events" - -#: ../campaigns/campaign_builder.rst:245 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron " -"job` which executes the following command at the " -"desired interval:" -msgstr "" -"Actions and Decisions in Mautic require a :doc:`cron " -"job` which executes the following command at the " -"desired interval:" - -#: ../campaigns/campaign_builder.rst:251 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." - -#: ../campaigns/campaigns_overview.rst:2 -msgid "Campaigns overview" -msgstr "Campaigns overview" - -#: ../campaigns/campaigns_overview.rst:4 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." - -#: ../campaigns/campaigns_overview.rst:6 -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." - -#: ../campaigns/campaigns_overview.rst:8 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimises the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." - -#: ../campaigns/campaigns_overview.rst:11 -msgid "Campaign types" -msgstr "Campaign types" - -#: ../campaigns/campaigns_overview.rst:13 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "Campaigns can be broadly categorized into three types:" - -#: ../campaigns/campaigns_overview.rst:18 -msgid "Time driven Campaigns" -msgstr "Time driven Campaigns" - -#: ../campaigns/campaigns_overview.rst:22 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." - -#: ../campaigns/campaigns_overview.rst:27 -msgid "Contact driven Campaigns" -msgstr "Contact driven Campaigns" - -#: ../campaigns/campaigns_overview.rst:31 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." - -#: ../campaigns/campaigns_overview.rst:37 -msgid "Mixed Campaigns" -msgstr "Mixed Campaigns" - -#: ../campaigns/campaigns_overview.rst:41 -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." - -#: ../campaigns/campaigns_overview.rst:44 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." - -#: ../campaigns/creating_campaigns.rst:4 -msgid "Creating Campaigns" -msgstr "Creating Campaigns" - -#: ../campaigns/creating_campaigns.rst:8 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." - -#: ../campaigns/creating_campaigns.rst:10 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." - -#: ../campaigns/creating_campaigns.rst:12 -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." - -#: ../campaigns/creating_campaigns.rst:15 -msgid "Prerequisites" -msgstr "Prerequisites" - -#: ../campaigns/creating_campaigns.rst:17 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" - -#: ../campaigns/creating_campaigns.rst:20 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" -"Create a Contact Segment or a Form to initialise your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." - -#: ../campaigns/creating_campaigns.rst:22 -msgid "Create any custom field that you need for your Contact profile." -msgstr "Create any custom field that you need for your Contact profile." - -#: ../campaigns/creating_campaigns.rst:23 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." - -#: ../campaigns/creating_campaigns.rst:24 -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." - -#: ../campaigns/creating_campaigns.rst:25 -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." - -#: ../campaigns/creating_campaigns.rst:27 -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." - -#: ../campaigns/creating_campaigns.rst:32 -msgid "Create your first Campaign" -msgstr "Create your first Campaign" - -#: ../campaigns/creating_campaigns.rst:36 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." - -#: ../campaigns/creating_campaigns.rst:39 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "To begin creating Campaigns, perform the following steps:" - -#: ../campaigns/creating_campaigns.rst:41 -msgid "Launch your Mautic instance." -msgstr "Launch your Mautic instance." - -#: ../campaigns/creating_campaigns.rst:42 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." - -#: ../campaigns/creating_campaigns.rst:43 -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" - -#: ../campaigns/creating_campaigns.rstNone -msgid "Screenshot of the create a new Campaign interface" -msgstr "Screenshot of the create a new Campaign interface" - -#: ../campaigns/creating_campaigns.rst:49 -msgid "Enter a name and a brief description for your Campaign." -msgstr "Enter a name and a brief description for your Campaign." - -#: ../campaigns/creating_campaigns.rst:50 -msgid "Optionally, you can set the following properties:" -msgstr "Optionally, you can set the following properties:" - -#: ../campaigns/creating_campaigns.rst:52 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organise your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." - -#: ../campaigns/creating_campaigns.rst:53 -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." - -#: ../campaigns/creating_campaigns.rst:54 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." - -#: ../campaigns/creating_campaigns.rst:56 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." - -#: ../campaigns/creating_campaigns.rst:59 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." - -#: ../campaigns/creating_campaigns.rst:63 -msgid "Add or remove Contacts in batch" -msgstr "Add or remove Contacts in batch" - -#: ../campaigns/creating_campaigns.rst:65 -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" - -#: ../campaigns/creating_campaigns.rst:72 -msgid "" -"See documentation on :doc:`/configuration/cron_jobs` for further details." -msgstr "" -"See documentation on :doc:`/configuration/cron_jobs` for further details." - -#: ../campaigns/managing_campaigns.rst:4 -msgid "Managing Campaigns" -msgstr "Managing Campaigns" - -#: ../campaigns/managing_campaigns.rst:8 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "You can manage your Campaigns from the Campaigns overview." - -#: ../campaigns/managing_campaigns.rst:10 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." - -#: ../campaigns/managing_campaigns.rst:12 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." - -#: ../campaigns/managing_campaigns.rst:14 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" - -#: ../campaigns/managing_campaigns.rstNone -msgid "Screenshot showing the Campaign overview" -msgstr "Screenshot showing the Campaign overview" - -#: ../campaigns/managing_campaigns.rst:20 -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." - -#: ../campaigns/managing_campaigns.rst:22 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." - -#: ../campaigns/managing_campaigns.rst:24 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "The **Preview** tab displays a diagrammatic preview of your Campaign." - -#: ../campaigns/managing_campaigns.rst:26 -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." - -#: ../campaigns/managing_campaigns.rst:28 -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." - -#: ../campaigns/managing_campaigns.rst:30 -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." - -#: ../campaigns/managing_campaigns.rst:32 -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." - -#: ../campaigns/managing_campaigns.rst:34 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." - -#: ../campaigns/troubleshooting_campaigns.rst:4 -msgid "Troubleshooting Campaigns" -msgstr "Troubleshooting Campaigns" - -#: ../campaigns/troubleshooting_campaigns.rst:9 -msgid "Page visits aren't recognized" -msgstr "Page visits aren't recognised" - -#: ../campaigns/troubleshooting_campaigns.rst:11 -msgid "To workaround this issue, try one of the following options:" -msgstr "To workaround this issue, try one of the following options:" - -#: ../campaigns/troubleshooting_campaigns.rst:13 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." - -#: ../campaigns/troubleshooting_campaigns.rst:15 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." - -#: ../campaigns/troubleshooting_campaigns.rst:17 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." - -#: ../campaigns/troubleshooting_campaigns.rst:19 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." - -#: ../campaigns/troubleshooting_campaigns.rst:21 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." diff --git a/docs/locale/en_GB/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/en_GB/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index b4275ad6..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/en_GB/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index aa0b3265..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/en_GB/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 17ad7a02..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/en_GB/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 46e6ec45..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/en_GB/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 6e00f7d9..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/categories/categories-overview.po b/docs/locale/en_GB/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index daf44fe0..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/channels.po b/docs/locale/en_GB/LC_MESSAGES/channels.po deleted file mode 100644 index 8ac2a988..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/channels.po +++ /dev/null @@ -1,3412 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Ruth Cheesley , 2022 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: 2022-11-14 11:42+0000\n" -"Last-Translator: Ruth Cheesley , 2022\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../channels/emails.rst:2 -msgid "Emails" -msgstr "Emails" - -#: ../channels/emails.rst:4 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." - -#: ../channels/emails.rst:7 -msgid "Email types" -msgstr "Email types" - -#: ../channels/emails.rstNone -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "Screenshot showing the types of Emails that are available in Mautic" - -#: ../channels/emails.rst:13 -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" -"There are two types of Emails: template and Segment - broadcast - Emails." - -#: ../channels/emails.rst:18 -msgid "Template Emails" -msgstr "Template Emails" - -#: ../channels/emails.rst:22 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." - -#: ../channels/emails.rst:25 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." - -#: ../channels/emails.rst:30 -msgid "Segment (Broadcast) Emails" -msgstr "Segment (Broadcast) Emails" - -#: ../channels/emails.rst:34 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." - -#: ../channels/emails.rstNone -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "Screenshot showing selecting Email Segments in Mautic" - -#: ../channels/emails.rst:40 -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." - -#: ../channels/emails.rst:42 -msgid "" -"Mautic initiates the sending of these Emails with a " -":doc:`/configuration/cron_jobs` - see section on Send Scheduled Broadcasts -" -" for example, Segment Emails - for more details on this." -msgstr "" -"Mautic initiates the sending of these Emails with a " -":doc:`/configuration/cron_jobs` - see section on Send Scheduled Broadcasts -" -" for example, Segment Emails - for more details on this." - -#: ../channels/emails.rst:45 -msgid "Email formats" -msgstr "Email formats" - -#: ../channels/emails.rst:47 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." - -#: ../channels/emails.rst:52 -msgid "Managing Emails" -msgstr "Managing Emails" - -#: ../channels/emails.rst:57 -msgid "Email overview" -msgstr "Email overview" - -#: ../channels/emails.rst:59 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." - -#: ../channels/emails.rst:62 -msgid "Translations" -msgstr "Translations" - -#: ../channels/emails.rst:64 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." - -#: ../channels/emails.rst:66 -msgid "It's also possible to have translations of A/B test variants." -msgstr "It's also possible to have translations of A/B test variants." - -#: ../channels/emails.rst:69 -msgid "Base64 encoded images" -msgstr "Base64 encoded images" - -#: ../channels/emails.rst:71 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" - -#: ../channels/emails.rstNone -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "Screenshot showing Base64 settings for images in Emails" - -#: ../channels/emails.rst:77 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." - -#: ../channels/emails.rst:78 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." - -#: ../channels/emails.rst:79 -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." - -#: ../channels/emails.rst:82 -msgid "Tokens" -msgstr "Tokens" - -#: ../channels/emails.rst:84 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." - -#: ../channels/emails.rst:86 -msgid "" -"Check the :doc:`/configuration/variables` documentation for a list of all " -"the available default fields." -msgstr "" -"Check the :doc:`/configuration/variables` documentation for a list of all " -"the available default fields." - -#: ../channels/emails.rst:89 -msgid "Default value" -msgstr "Default value" - -#: ../channels/emails.rst:91 -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" - -#: ../channels/emails.rst:97 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." - -#: ../channels/emails.rst:100 -msgid "Encoded value" -msgstr "Encoded value" - -#: ../channels/emails.rst:102 -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" -"It's possible to encode values used in a token using the following syntax:" - -#: ../channels/emails.rst:108 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." - -#: ../channels/emails.rst:111 -msgid "Date formats" -msgstr "Date formats" - -#: ../channels/emails.rst:113 -msgid "To use custom date fields in tokens, use the following format:" -msgstr "To use custom date fields in tokens, use the following format:" - -#: ../channels/emails.rst:121 -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." - -#: ../channels/emails.rst:124 -msgid "Contact replies" -msgstr "Contact replies" - -#: ../channels/emails.rst:126 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." - -#: ../channels/emails.rst:129 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." - -#: ../channels/emails.rst:131 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." - -#: ../channels/emails.rst:134 -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." - -#: ../channels/emails.rst:136 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" -"Go to the Mautic configuration and set up the inbox to monitor replies." - -#: ../channels/emails.rstNone ../channels/emails.rstNone -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "Screenshot showing IMAP mailbox setting for reply monitoring" - -#: ../channels/emails.rst:142 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "To fetch and process the replies, run the following cron command:" - -#: ../channels/emails.rst:144 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "``php path/to/mautic/bin/console mautic:email:fetch``" - -#: ../channels/emails.rst:147 -msgid "Usage" -msgstr "Usage" - -#: ../channels/emails.rst:148 -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." - -#: ../channels/emails.rstNone -msgid "Screenshot showing Contact replies Campaign action" -msgstr "Screenshot showing Contact replies Campaign action" - -#: ../channels/emails.rst:158 -msgid "Mailer as Owner" -msgstr "Mailer as Owner" - -#: ../channels/emails.rst:162 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." - -#: ../channels/emails.rst:167 -msgid "Sending from the Contact owner" -msgstr "Sending from the Contact owner" - -#: ../channels/emails.rst:171 -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "Open the Admin menu by clicking the cog icon in the top right corner." - -#: ../channels/emails.rst:172 -msgid "Select the Configuration menu item." -msgstr "Select the Configuration menu item." - -#: ../channels/emails.rst:173 -msgid "Select the Email Settings tab." -msgstr "Select the Email Settings tab." - -#: ../channels/emails.rst:174 -msgid "Switch the Mailer is owner to Yes." -msgstr "Switch the Mailer is owner to Yes." - -#: ../channels/emails.rst:175 -msgid "Save the configuration." -msgstr "Save the configuration." - -#: ../channels/emails.rst:178 -msgid "Overriding the mailer as owner setting" -msgstr "Overriding the mailer as owner setting" - -#: ../channels/emails.rst:179 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "It's possible to override the global setting on a per-Email basis." - -#: ../channels/emails.rst:181 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." - -#: ../channels/emails.rstNone -msgid "Screenshot showing mailer as owner switch" -msgstr "Screenshot showing mailer as owner switch" - -#: ../channels/emails.rst:187 -msgid "If set to Yes, the global setting takes precedence." -msgstr "If set to Yes, the global setting takes precedence." - -#: ../channels/emails.rst:189 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." - -#: ../channels/emails.rst:192 -msgid "Signatures" -msgstr "Signatures" - -#: ../channels/emails.rst:194 -msgid "Setting a signature happens in two places:" -msgstr "Setting a signature happens in two places:" - -#: ../channels/emails.rst:196 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" - -#: ../channels/emails.rst:202 -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." - -#: ../channels/emails.rst:204 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." - -#: ../channels/emails.rst:206 -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." - -#: ../channels/emails.rst:209 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." - -#: ../channels/emails.rst:211 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." - -#: ../channels/emails.rst:213 -msgid "Also, when sending a test Email this is also the case." -msgstr "Also, when sending a test Email this is also the case." - -#: ../channels/emails.rst:219 -msgid "Using the Email signature" -msgstr "Using the Email signature" - -#: ../channels/emails.rst:223 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." - -#: ../channels/emails.rst:226 -msgid "Email delivery" -msgstr "Email delivery" - -#: ../channels/emails.rst:228 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" - -#: ../channels/emails.rst:230 -msgid ":xref:`Mandrill`" -msgstr ":xref:`Mandrill`" - -#: ../channels/emails.rst:231 -msgid ":xref:`GMail`" -msgstr ":xref:`GMail`" - -#: ../channels/emails.rst:232 -msgid ":xref:`Sendgrid`" -msgstr ":xref:`Sendgrid`" - -#: ../channels/emails.rst:233 -msgid ":xref:`Mailjet`" -msgstr ":xref:`Mailjet`" - -#: ../channels/emails.rst:234 -msgid ":xref:`Postmark`" -msgstr ":xref:`Postmark`" - -#: ../channels/emails.rst:235 -msgid ":xref:`Sendmail`" -msgstr ":xref:`Sendmail`" - -#: ../channels/emails.rst:236 -msgid ":xref:`Amazon SES`." -msgstr ":xref:`Amazon SES`." - -#: ../channels/emails.rst:238 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." - -#: ../channels/emails.rst:241 -msgid "Immediate delivery" -msgstr "Immediate delivery" - -#: ../channels/emails.rst:243 -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." - -#: ../channels/emails.rst:246 -msgid "Queued delivery" -msgstr "Queued delivery" - -#: ../channels/emails.rst:248 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" - -#: ../channels/emails.rst:254 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." - -#: ../channels/emails.rst:259 -msgid "Tracking Opened Emails" -msgstr "Tracking Opened Emails" - -#: ../channels/emails.rst:263 -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." - -#: ../channels/emails.rst:265 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." - -#: ../channels/emails.rst:267 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." - -#: ../channels/emails.rst:272 -msgid "Tracking links in Emails" -msgstr "Tracking links in Emails" - -#: ../channels/emails.rst:276 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." - -#: ../channels/emails.rst:279 -msgid "Unsubscribing" -msgstr "Unsubscribing" - -#: ../channels/emails.rst:281 -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." - -#: ../channels/emails.rst:283 -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." - -#: ../channels/emails.rst:285 ../channels/emails.rst:298 -msgid "For example:" -msgstr "For example:" - -#: ../channels/emails.rst:291 -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" -"You can find the configuration of the unsubscribe text in the global " -"settings." - -#: ../channels/emails.rst:294 -msgid "Online version" -msgstr "Online version" - -#: ../channels/emails.rst:296 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." - -#: ../channels/emails.rst:305 -msgid "Bounce management" -msgstr "Bounce management" - -#: ../channels/emails.rst:307 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." - -#: ../channels/emails.rst:309 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." - -#: ../channels/emails.rst:311 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." - -#: ../channels/emails.rst:313 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." - -#: ../channels/emails.rst:318 -msgid "Monitored inbox configuration" -msgstr "Monitored inbox configuration" - -#: ../channels/emails.rst:322 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." - -#: ../channels/emails.rst:328 -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." - -#: ../channels/emails.rst:330 -msgid "To fetch and process the messages, run the following command:" -msgstr "To fetch and process the messages, run the following command:" - -#: ../channels/emails.rst:336 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." - -#: ../channels/emails.rst:338 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." - -#: ../channels/emails.rst:340 -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." - -#: ../channels/emails.rst:343 -msgid "Webhook bounce management" -msgstr "Webhook bounce management" - -#: ../channels/emails.rst:348 -msgid "Elastic Email Webhook" -msgstr "Elastic Email Webhook" - -#: ../channels/emails.rst:352 -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" -"Login to your Elastic Email account and go to Settings -> Notification." - -#: ../channels/emails.rst:354 -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" - -#: ../channels/emails.rst:356 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "Check these actions: unsubscribed, complaints, bounce/error" - -#: ../channels/emails.rstNone -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "Screenshot showing Elastic Email Webhook settings" - -#: ../channels/emails.rst:363 -msgid "Useful resources" -msgstr "Useful resources" - -#: ../channels/emails.rst:365 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr ":xref:`Elastic Support` - Elastic Email's Help desk" - -#: ../channels/emails.rst:366 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" - -#: ../channels/emails.rst:371 -msgid "Amazon SES Webhook" -msgstr "Amazon SES Webhook" - -#: ../channels/emails.rst:375 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." - -#: ../channels/emails.rst:377 -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" - -#: ../channels/emails.rstNone -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "Screenshot showing Amazon SNS create new topic" - -#: ../channels/emails.rstNone -msgid "Screenshot showing naming your SNS topic" -msgstr "Screenshot showing naming your SNS topic" - -#: ../channels/emails.rst:387 -msgid "Click on the newly created topic to create a subscriber" -msgstr "Click on the newly created topic to create a subscriber" - -#: ../channels/emails.rstNone -msgid "Screenshot showing go to the topic" -msgstr "Screenshot showing go to the topic" - -#: ../channels/emails.rstNone -msgid "Screenshot showing new subscriber" -msgstr "Screenshot showing new subscriber" - -#: ../channels/emails.rst:397 -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "Enter the URL to the Amazon Webhook on your Mautic installation." - -#: ../channels/emails.rst:400 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." - -#: ../channels/emails.rst:402 -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." - -#: ../channels/emails.rst:0 -msgid "Enter URL in Mautic" -msgstr "Enter URL in Mautic" - -#: ../channels/emails.rst:408 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." - -#: ../channels/emails.rst:410 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" - -#: ../channels/emails.rst:447 -msgid "Mandrill Webhook" -msgstr "Mandrill Webhook" - -#: ../channels/emails.rst:451 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "Mautic supports a few of Mandrill's Webhooks for bounces." - -#: ../channels/emails.rst:453 -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "Login to your Mandrill account and go to Settings -> Webhooks" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "Screenshot showing Mandrill Webhooks" - -#: ../channels/emails.rst:459 -msgid "Click Add a Webhook" -msgstr "Click Add a Webhook" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "Screenshot showing addition of Mandrill Webhooks" - -#: ../channels/emails.rst:467 -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." - -#: ../channels/emails.rst:471 -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." - -#: ../channels/emails.rst:473 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" - -#: ../channels/emails.rst:0 ../channels/emails.rst:0 -msgid "Screenshot showing addition of metadata" -msgstr "Screenshot showing addition of metadata" - -#: ../channels/emails.rst:486 -msgid "Mailjet Webhook" -msgstr "Mailjet Webhook" - -#: ../channels/emails.rst:490 -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." - -#: ../channels/emails.rst:492 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "Screenshot showing Mailjet Webhooks" - -#: ../channels/emails.rst:498 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" -"On the event type list, select the one you want to link to your Mautic " -"account" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing adding Webhooks" -msgstr "Screenshot showing adding Webhooks" - -#: ../channels/emails.rst:506 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." - -#: ../channels/emails.rst:510 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." - -#: ../channels/emails.rst:515 -msgid "SparkPost Webhook" -msgstr "SparkPost Webhook" - -#: ../channels/emails.rst:516 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "Login to your SparkPost account and go to Account -> Webhooks." - -#: ../channels/emails.rst:0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "Screenshot showing SparkPost webhooks" - -#: ../channels/emails.rst:522 -msgid "Click the New Webhook button top right" -msgstr "Click the New Webhook button top right" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing new Webhooks" -msgstr "Screenshot showing new Webhooks" - -#: ../channels/emails.rst:528 -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" - -#: ../channels/emails.rst:530 ../channels/emails.rst:553 -msgid "Select the following Events" -msgstr "Select the following Events" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing events" -msgstr "Screenshot showing events" - -#: ../channels/emails.rst:537 -msgid "SendGrid Webhook" -msgstr "SendGrid Webhook" - -#: ../channels/emails.rst:541 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing SendGrid Webhooks" -msgstr "Screenshot showing SendGrid Webhooks" - -#: ../channels/emails.rst:549 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing Events" -msgstr "Screenshot showing Events" - -#: ../channels/emails.rst:559 -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "Save setting - on the right side of \"Event Notification\" row:" - -#: ../channels/emails.rst:0 -msgid "Screenshot showing save settings" -msgstr "Screenshot showing save settings" - -#: ../channels/emails.rst:568 -msgid "Create a Segment with bounced Emails" -msgstr "Create a Segment with bounced Emails" - -#: ../channels/emails.rst:572 -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." - -#: ../channels/emails.rst:574 -msgid "Go to Segments > New." -msgstr "Go to Segments > New." - -#: ../channels/emails.rst:575 -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "Type in the Segment name. For example Bounced Emails." - -#: ../channels/emails.rst:576 -msgid "Select the Filters tab." -msgstr "Select the Filters tab." - -#: ../channels/emails.rst:577 -msgid "Create new Bounced Email equals Yes filter." -msgstr "Create new Bounced Email equals Yes filter." - -#: ../channels/emails.rst:578 -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." - -#: ../channels/emails.rst:579 -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "All Contacts with bounced Emails should appear in this Segment." - -#: ../channels/emails.rst:584 -msgid "Troubleshooting Emails" -msgstr "Troubleshooting Emails" - -#: ../channels/emails.rst:589 -msgid "Email open tracking" -msgstr "Email open tracking" - -#: ../channels/emails.rst:591 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." - -#: ../channels/emails.rst:593 -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." - -#: ../channels/emails.rst:595 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." - -#: ../channels/emails.rst:597 -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." - -#: ../channels/emails.rst:600 -msgid "Email link tracking" -msgstr "Email link tracking" - -#: ../channels/emails.rst:602 -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." - -#: ../channels/emails.rst:604 -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "If the Email click doesn't get tracked, make sure that:" - -#: ../channels/emails.rst:606 -msgid "Your Mautic server is on an accessible URL." -msgstr "Your Mautic server is on an accessible URL." - -#: ../channels/emails.rst:607 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." - -#: ../channels/emails.rst:608 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." - -#: ../channels/emails.rst:609 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" - -#: ../channels/emails.rst:610 -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "Check if Mautic replaced the link in the Email with a tracking link." - -#: ../channels/emails.rst:613 -msgid "Unsubscribe link doesn't work" -msgstr "Unsubscribe link doesn't work" - -#: ../channels/emails.rst:614 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "The unsubscribe link **doesn't work in test Emails**." - -#: ../channels/emails.rst:616 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." - -#: ../channels/emails.rst:618 -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." - -#: ../channels/emails.rst:620 -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." - -#: ../channels/focus_items.rst:2 -msgid "Focus Items" -msgstr "Focus Items" - -#: ../channels/focus_items.rst:4 -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." - -#: ../channels/focus_items.rst:6 -msgid "You can find Focus Items listed under the Channels menu." -msgstr "You can find Focus Items listed under the Channels menu." - -#: ../channels/focus_items.rst:9 -msgid "Focus Item settings" -msgstr "Focus Item settings" - -#: ../channels/focus_items.rst:10 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." - -#: ../channels/focus_items.rst:13 -msgid "Types of Focus Item" -msgstr "Types of Focus Item" - -#: ../channels/focus_items.rst:15 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." - -#: ../channels/focus_items.rst:0 -msgid "Screenshot showing the types of Focus Items." -msgstr "Screenshot showing the types of Focus Items." - -#: ../channels/focus_items.rst:21 -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." - -#: ../channels/focus_items.rst:22 -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." - -#: ../channels/focus_items.rst:23 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" -"**Emphasise a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." - -#: ../channels/focus_items.rst:26 -msgid "Engagement options" -msgstr "Engagement options" - -#: ../channels/focus_items.rst:28 -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." - -#: ../channels/focus_items.rst:0 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "Screenshot showing the engagement settings for Focus Items." - -#: ../channels/focus_items.rst:36 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." - -#: ../channels/focus_items.rst:41 -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" - -#: ../channels/focus_items.rst:38 -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "**Upon arrival** - As soon as a visitor lands on the page" - -#: ../channels/focus_items.rst:39 -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" - -#: ../channels/focus_items.rst:40 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" - -#: ../channels/focus_items.rst:41 -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" - -#: ../channels/focus_items.rst:42 -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" - -#: ../channels/focus_items.rst:43 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." - -#: ../channels/focus_items.rst:49 -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" - -#: ../channels/focus_items.rst:45 -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" -"**Every page** - Show on every page the visitors engages with on your " -"website" - -#: ../channels/focus_items.rst:46 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" - -#: ../channels/focus_items.rst:47 -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" - -#: ../channels/focus_items.rst:48 -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" - -#: ../channels/focus_items.rst:49 -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" - -#: ../channels/focus_items.rst:50 -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" - -#: ../channels/focus_items.rst:51 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasise a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasise a " -"Link type)." - -#: ../channels/focus_items.rst:56 -msgid "Styles" -msgstr "Styles" - -#: ../channels/focus_items.rst:58 -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." - -#: ../channels/focus_items.rst:0 -msgid "Screenshot showing the styles for Focus Items." -msgstr "Screenshot showing the styles for Focus Items." - -#: ../channels/focus_items.rst:65 -msgid "Bar" -msgstr "Bar" - -#: ../channels/focus_items.rst:66 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." - -#: ../channels/focus_items.rst:68 -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." - -#: ../channels/focus_items.rst:69 -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." - -#: ../channels/focus_items.rst:70 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." - -#: ../channels/focus_items.rst:71 -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." - -#: ../channels/focus_items.rst:74 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" - -#: ../channels/focus_items.rst:73 -msgid "**Large** - 50px height and 17pt font" -msgstr "**Large** - 50px height and 17pt font" - -#: ../channels/focus_items.rst:74 -msgid "**Regular** - 30px height and 14pt font" -msgstr "**Regular** - 30px height and 14pt font" - -#: ../channels/focus_items.rst:77 -msgid "Modal" -msgstr "Modal" - -#: ../channels/focus_items.rst:78 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." - -#: ../channels/focus_items.rst:80 -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." - -#: ../channels/focus_items.rst:82 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." - -#: ../channels/focus_items.rst:85 -msgid "Notification" -msgstr "Notification" - -#: ../channels/focus_items.rst:87 -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." - -#: ../channels/focus_items.rst:89 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." - -#: ../channels/focus_items.rst:91 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" -"**Placement** - This option allows you to select the corner to display the " -"notification." - -#: ../channels/focus_items.rst:94 -msgid "Full page" -msgstr "Full page" - -#: ../channels/focus_items.rst:96 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." - -#: ../channels/focus_items.rst:98 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" -"There are no additional configuration options for this style of Focus Item." - -#: ../channels/focus_items.rst:101 -msgid "Colors" -msgstr "Colours" - -#: ../channels/focus_items.rst:103 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" -"By default, Mautic determines the top colours extracted from the snapshot. " -"Four colours are currently supported. You can customise colours by using the" -" colour picker or entering a hex code." - -#: ../channels/focus_items.rst:105 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" -"**Primary colour** - For the Bar style, the primary colour is the background" -" colour of the bar - For the Modal, Notification and full page styles, the " -"primary colour is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." - -#: ../channels/focus_items.rst:108 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" -"**Text colour** - The colour of the headline text entered in the Content " -"section of the Focus Item editor" - -#: ../channels/focus_items.rst:109 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" -"**Button colour** - The background colour for the button on the Collect Data" -" and Emphasise Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." - -#: ../channels/focus_items.rst:110 -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" -"**Button text colour** - The colour for the button text on the Collect Data " -"and Emphasise Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." - -#: ../channels/focus_items.rst:113 -msgid "Content" -msgstr "Content" - -#: ../channels/focus_items.rst:114 -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" -"There are three editing modes to choose from when customising Focus Items." - -#: ../channels/focus_items.rst:0 -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "Screenshot showing the content options for creating Focus Items." - -#: ../channels/focus_items.rst:121 -msgid "Basic" -msgstr "Basic" - -#: ../channels/focus_items.rst:122 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." - -#: ../channels/focus_items.rst:124 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." - -#: ../channels/focus_items.rst:125 -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" -"**Tagline** - This option is only available for Emphasise a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." - -#: ../channels/focus_items.rst:126 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customisable." - -#: ../channels/focus_items.rst:127 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." - -#: ../channels/focus_items.rst:128 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" -"**Link text** - This option is only available for Emphasise a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." - -#: ../channels/focus_items.rst:129 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" -"**Link URL** - This option is only available for Emphasise a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." - -#: ../channels/focus_items.rst:130 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" -"**Open in a new window** - This option is only available for Emphasise a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." - -#: ../channels/focus_items.rst:133 -msgid "Editor" -msgstr "Editor" - -#: ../channels/focus_items.rst:134 -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" -"This allows the User to edit the content with the global editor available in" -" Mautic." - -#: ../channels/focus_items.rst:137 -msgid "HTML" -msgstr "HTML" - -#: ../channels/focus_items.rst:138 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" -"This allows the User to enter HTML into a blank field for a fully customised" -" Focus Item." - -#: ../channels/focus_items.rst:141 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." - -#: ../channels/focus_items.rst:145 -msgid "Creating a Focus Item" -msgstr "Creating a Focus Item" - -#: ../channels/focus_items.rst:147 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." - -#: ../channels/focus_items.rst:150 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." - -#: ../channels/focus_items.rst:152 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "When creating a new Focus Item, you can set the following fields:" - -#: ../channels/focus_items.rst:154 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "**Name** - A name used internally to identify the Focus Item" - -#: ../channels/focus_items.rst:156 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." - -#: ../channels/focus_items.rst:158 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" -"**Category** - Assign a Category to help you organise your Focus Items." - -#: ../channels/focus_items.rst:160 -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" - -#: ../channels/focus_items.rst:164 ../channels/sms.rst:113 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" - -#: ../channels/focus_items.rst:166 ../channels/sms.rst:115 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." - -#: ../channels/focus_items.rst:170 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." - -#: ../channels/focus_items.rst:0 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "Screenshot showing the creation of a Focus Item." - -#: ../channels/focus_items.rst:179 -msgid "Using the Focus Item builder" -msgstr "Using the Focus Item builder" - -#: ../channels/focus_items.rst:183 -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." - -#: ../channels/focus_items.rst:186 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." - -#: ../channels/focus_items.rst:0 -msgid "Screenshot showing the Focus Item Builder" -msgstr "Screenshot showing the Focus Item Builder" - -#: ../channels/focus_items.rst:192 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." - -#: ../channels/focus_items.rst:0 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "Screenshot showing the Focus Item Builder in responsive mode." - -#: ../channels/focus_items.rst:199 -msgid "Using Focus Items" -msgstr "Using Focus Items" - -#: ../channels/focus_items.rst:201 -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." - -#: ../channels/focus_items.rst:204 -msgid "Deploying to a website" -msgstr "Deploying to a website" - -#: ../channels/focus_items.rst:206 -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." - -#: ../channels/focus_items.rst:0 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" -"Screenshot showing the Focus Item code to be embedded within a website." - -#: ../channels/focus_items.rst:213 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." - -#: ../channels/focus_items.rst:215 -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." - -#: ../channels/focus_items.rst:220 -msgid "Deploying through a Campaign" -msgstr "Deploying through a Campaign" - -#: ../channels/focus_items.rst:224 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." - -#: ../channels/focus_items.rst:226 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." - -#: ../channels/focus_items.rst:229 -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." - -#: ../channels/focus_items.rst:232 -msgid "Measuring success" -msgstr "Measuring success" - -#: ../channels/focus_items.rst:234 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" -"When using the Emphasise a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." - -#: ../channels/focus_items.rst:236 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." - -#: ../channels/focus_items.rst:238 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." - -#: ../channels/marketing_messages.rst:2 -msgid "Marketing Messages" -msgstr "Marketing Messages" - -#: ../channels/marketing_messages.rst:5 -msgid "What are Marketing Messages?" -msgstr "What are Marketing Messages?" - -#: ../channels/marketing_messages.rst:7 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimise and personalise" -" communication with your customers." - -#: ../channels/marketing_messages.rst:9 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." - -#: ../channels/marketing_messages.rst:0 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." - -#: ../channels/marketing_messages.rst:15 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." - -#: ../channels/marketing_messages.rst:17 -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." - -#: ../channels/marketing_messages.rst:19 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." - -#: ../channels/marketing_messages.rst:24 -msgid "Creating a Marketing Message" -msgstr "Creating a Marketing Message" - -#: ../channels/marketing_messages.rst:28 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." - -#: ../channels/marketing_messages.rst:30 -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." - -#: ../channels/marketing_messages.rst:33 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." - -#: ../channels/marketing_messages.rst:0 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "Screenshot showing the creation of a new Marketing Message in Mautic." - -#: ../channels/marketing_messages.rst:39 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." - -#: ../channels/push_notifications.rst:2 -msgid "Mobile push notifications" -msgstr "Mobile push notifications" - -#: ../channels/push_notifications.rst:4 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." - -#: ../channels/push_notifications.rst:6 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." - -#: ../channels/push_notifications.rst:9 -msgid "Setup" -msgstr "Setup" - -#: ../channels/push_notifications.rst:14 -msgid "iOS code for OneSignal integration" -msgstr "iOS code for OneSignal integration" - -#: ../channels/push_notifications.rst:16 -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." - -#: ../channels/push_notifications.rst:36 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." - -#: ../channels/push_notifications.rst:39 -msgid "UserData struct" -msgstr "UserData struct" - -#: ../channels/push_notifications.rst:58 -msgid "pushUserDataToMautic func" -msgstr "pushUserDataToMautic func" - -#: ../channels/push_notifications.rst:60 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." - -#: ../channels/push_notifications.rst:94 -msgid "Notification statistics" -msgstr "Notification statistics" - -#: ../channels/push_notifications.rst:96 -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." - -#: ../channels/sms.rst:2 -msgid "SMS Text messages" -msgstr "SMS Text messages" - -#: ../channels/sms.rst:4 -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." - -#: ../channels/sms.rst:7 -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." - -#: ../channels/sms.rst:12 -msgid "Type of Text Messages" -msgstr "Type of Text Messages" - -#: ../channels/sms.rst:16 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." - -#: ../channels/sms.rst:21 -msgid "Template Text Messages" -msgstr "Template Text Messages" - -#: ../channels/sms.rst:25 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." - -#: ../channels/sms.rst:30 -msgid "Segment Text Messages" -msgstr "Segment Text Messages" - -#: ../channels/sms.rst:34 -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." - -#: ../channels/sms.rst:36 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." - -#: ../channels/sms.rst:38 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." - -#: ../channels/sms.rst:43 -msgid "Creating a Text Message" -msgstr "Creating a Text Message" - -#: ../channels/sms.rst:47 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." - -#: ../channels/sms.rst:0 -msgid "Screenshot showing create new SMS button" -msgstr "Screenshot showing create new SMS button" - -#: ../channels/sms.rst:53 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." - -#: ../channels/sms.rst:58 -msgid "Template Text Message fields" -msgstr "Template Text Message fields" - -#: ../channels/sms.rst:62 ../channels/sms.rst:89 -msgid "The following fields are available:" -msgstr "The following fields are available:" - -#: ../channels/sms.rst:0 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" -"Screenshot showing the fields required for a new Template Text Message" - -#: ../channels/sms.rst:68 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." - -#: ../channels/sms.rst:72 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." - -#: ../channels/sms.rst:76 ../channels/sms.rst:103 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." - -#: ../channels/sms.rst:78 ../channels/sms.rst:105 -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" -"**Language** - This allows you to set the language of this Text Message." - -#: ../channels/sms.rst:80 ../channels/sms.rst:107 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." - -#: ../channels/sms.rst:85 -msgid "Segment Text Message fields" -msgstr "Segment Text Message fields" - -#: ../channels/sms.rst:0 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "Screenshot showing the fields required for a new Segment Text Message" - -#: ../channels/sms.rst:95 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." - -#: ../channels/sms.rst:99 -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." - -#: ../channels/sms.rst:109 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." - -#: ../channels/sms.rst:118 -msgid "Creating Text Messages from Campaign Builder" -msgstr "Creating Text Messages from Campaign Builder" - -#: ../channels/sms.rst:122 -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." - -#: ../channels/sms.rst:0 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "Screenshot showing the option to create an SMS from a Campaign" - -#: ../channels/sms.rst:128 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." - -#: ../channels/sms.rst:133 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "Sending Text Messages as a Marketing Messages" - -#: ../channels/sms.rst:137 -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." - -#: ../channels/sms.rst:139 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." - -#: ../channels/sms.rst:0 -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" -"Screenshot showing the option to send a Text Message as a Marketing Message" - -#: ../channels/sms.rst:146 -msgid "Managing unsubscribes" -msgstr "Managing unsubscribes" - -#: ../channels/sms.rst:149 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." - -#: ../channels/sms.rst:151 -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." - -#: ../channels/sms.rst:153 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "You can also view SMS replies in the Contact timeline:" - -#: ../channels/sms.rst:0 -msgid "Screenshot showing the reply from SMS" -msgstr "Screenshot showing the reply from SMS" - -#: ../channels/sms.rst:162 -msgid "Working with replies to Text Messages" -msgstr "Working with replies to Text Messages" - -#: ../channels/sms.rst:166 -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." - -#: ../channels/sms.rst:0 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "Screenshot showing the Campaign action 'Sends a Text Message'" - -#: ../channels/sms.rst:172 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." - -#: ../channels/sms.rst:174 -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." - -#: ../channels/sms.rst:177 -msgid "Important notes" -msgstr "Important notes" - -#: ../channels/sms.rst:179 -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" - -#: ../channels/sms.rst:180 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "There must be a phone number in the Mobile Phone Contact field" - -#: ../channels/sms.rst:181 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" - -#: ../channels/social_monitoring.rst:4 -msgid "Social Monitoring" -msgstr "Social Monitoring" - -#: ../channels/social_monitoring.rst:8 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." - -#: ../channels/social_monitoring.rst:11 -msgid "Requirements" -msgstr "Requirements" - -#: ../channels/social_monitoring.rst:13 -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "The :doc:`/plugins/twitter` plugin must be configured" - -#: ../channels/social_monitoring.rst:14 -msgid "" -"You must trigger the Social Monitoring :doc:`cron job " -"` periodically." -msgstr "" -"You must trigger the Social Monitoring :doc:`cron job " -"` periodically." - -#: ../channels/social_monitoring.rst:19 -msgid "Creating a Social Monitor" -msgstr "Creating a Social Monitor" - -#: ../channels/social_monitoring.rst:23 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." - -#: ../channels/social_monitoring.rst:25 -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "Mautic offers two options when creating a Social Monitor:" - -#: ../channels/social_monitoring.rst:27 -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" - -#: ../channels/social_monitoring.rst:28 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." - -#: ../channels/social_monitoring.rst:0 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "Screenshot showing the creation of a new Social Monitor." - -#: ../channels/social_monitoring.rst:35 -msgid "Social mentions" -msgstr "Social mentions" - -#: ../channels/social_monitoring.rst:37 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" - -#: ../channels/social_monitoring.rst:39 -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." - -#: ../channels/social_monitoring.rst:40 ../channels/social_monitoring.rst:67 -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." - -#: ../channels/social_monitoring.rst:41 ../channels/social_monitoring.rst:68 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." - -#: ../channels/social_monitoring.rst:43 ../channels/social_monitoring.rst:70 -msgid "There are also the standard Mautic fields available:" -msgstr "g" - -#: ../channels/social_monitoring.rst:45 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." - -#: ../channels/social_monitoring.rst:49 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." - -#: ../channels/social_monitoring.rst:51 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." - -#: ../channels/social_monitoring.rst:55 ../channels/social_monitoring.rst:82 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." - -#: ../channels/social_monitoring.rst:0 -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." - -#: ../channels/social_monitoring.rst:62 -msgid "Hashtags" -msgstr "Hashtags" - -#: ../channels/social_monitoring.rst:64 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" - -#: ../channels/social_monitoring.rst:66 -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." - -#: ../channels/social_monitoring.rst:72 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." - -#: ../channels/social_monitoring.rst:76 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." - -#: ../channels/social_monitoring.rst:78 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." - -#: ../channels/social_monitoring.rst:0 -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." - -#: ../channels/utm_tags.rst:2 ../channels/utm_tags.rst:38 -msgid "UTM tags" -msgstr "UTM tags" - -#: ../channels/utm_tags.rst:4 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." - -#: ../channels/utm_tags.rst:7 -msgid "Key benefits of using UTM tags" -msgstr "Key benefits of using UTM tags" - -#: ../channels/utm_tags.rst:9 -msgid "With UTM tags, you can:" -msgstr "With UTM tags, you can:" - -#: ../channels/utm_tags.rst:11 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" -"Track the value of marketing projects and measure return on investment" - -#: ../channels/utm_tags.rst:12 -msgid "Get precise data about conversion and traffic sources" -msgstr "Get precise data about conversion and traffic sources" - -#: ../channels/utm_tags.rst:13 -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "Test the effectiveness of marketing content through A/B testing" - -#: ../channels/utm_tags.rst:16 -msgid "Using UTM tags in Mautic" -msgstr "Using UTM tags in Mautic" - -#: ../channels/utm_tags.rst:18 -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." - -#: ../channels/utm_tags.rst:20 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." - -#: ../channels/utm_tags.rst:0 -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "Screenshot showing the option to add Google Analytics code" - -#: ../channels/utm_tags.rst:26 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." - -#: ../channels/utm_tags.rst:28 -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." - -#: ../channels/utm_tags.rst:30 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." - -#: ../channels/utm_tags.rst:32 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "The following table lists the Google Analytics UTM tags:" - -#: ../channels/utm_tags.rst:34 -msgid "Title" -msgstr "Title" - -#: ../channels/utm_tags.rst:39 -msgid "Description" -msgstr "Description" - -#: ../channels/utm_tags.rst:40 -msgid "Campaign Source" -msgstr "Campaign Source" - -#: ../channels/utm_tags.rst:43 -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." - -#: ../channels/utm_tags.rst:42 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "Examples: facebook, twitter, blog, newsletters" - -#: ../channels/utm_tags.rst:43 -msgid "UTM code: utm_source" -msgstr "UTM code: utm_source" - -#: ../channels/utm_tags.rst:44 -msgid "Sample code: utm_source=facebook" -msgstr "Sample code: utm_source=facebook" - -#: ../channels/utm_tags.rst:45 -msgid "Campaign Medium" -msgstr "Campaign Medium" - -#: ../channels/utm_tags.rst:48 -msgid "UTM tags - Mautic Documentation" -msgstr "UTM tags - Mautic Documentation" - -#: ../channels/utm_tags.rst:47 -msgid "Examples: cpc, organic_social" -msgstr "Examples: cpc, organic_social" - -#: ../channels/utm_tags.rst:48 -msgid "UTM code: utm_medium" -msgstr "UTM code: utm_medium" - -#: ../channels/utm_tags.rst:49 -msgid "Sample code: utm_medium=paid_social" -msgstr "Sample code: utm_medium=paid_social" - -#: ../channels/utm_tags.rst:50 -msgid "Campaign Name" -msgstr "Campaign Name" - -#: ../channels/utm_tags.rst:53 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "The specific promotion or Campaign title that you want to track." - -#: ../channels/utm_tags.rst:52 -msgid "Examples: summer_sale, free_trial" -msgstr "Examples: summer_sale, free_trial" - -#: ../channels/utm_tags.rst:53 -msgid "UTM code: utm_campaign" -msgstr "UTM code: utm_campaign" - -#: ../channels/utm_tags.rst:54 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "Sample code: utm_campaign=summer_sale" - -#: ../channels/utm_tags.rst:55 -msgid "Campaign Content" -msgstr "Campaign Content" - -#: ../channels/utm_tags.rst:56 -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." - -#: ../channels/utm_tags.rst:57 -msgid "Campaign Term" -msgstr "Campaign Term" - -#: ../channels/utm_tags.rst:58 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." - -#: ../channels/utm_tags.rst:61 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." - -#: ../channels/utm_tags.rst:66 -msgid "Using UTM tags in Emails" -msgstr "Using UTM tags in Emails" - -#: ../channels/utm_tags.rst:70 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." - -#: ../channels/utm_tags.rst:72 -msgid "In Mautic, click Channels > Emails." -msgstr "In Mautic, click Channels > Emails." - -#: ../channels/utm_tags.rst:73 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." - -#: ../channels/utm_tags.rst:74 ../channels/utm_tags.rst:90 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "Locate the Google Analytics UTM tags section on the bottom right." - -#: ../channels/utm_tags.rst:75 ../channels/utm_tags.rst:91 -msgid "Enter the appropriate information in the fields." -msgstr "Enter the appropriate information in the fields." - -#: ../channels/utm_tags.rst:76 ../channels/utm_tags.rst:92 -msgid "Click Apply." -msgstr "Click Apply." - -#: ../channels/utm_tags.rst:79 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "When adding links in Emails, use the edit link icon in the builder." - -#: ../channels/utm_tags.rst:80 -msgid "When adding links in Code Mode, use the tag." -msgstr "When adding links in Code Mode, use the tag." - -#: ../channels/utm_tags.rst:81 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." - -#: ../channels/utm_tags.rst:84 -msgid "Using UTM tags in Focus Items" -msgstr "Using UTM tags in Focus Items" - -#: ../channels/utm_tags.rst:86 -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." - -#: ../channels/utm_tags.rst:88 -msgid "Click Channels > Focus Items" -msgstr "Click Channels > Focus Items" - -#: ../channels/utm_tags.rst:89 -msgid "Create a new focus item or open an existing one." -msgstr "Create a new focus item or open an existing one." - -#: ../channels/web_notifications.rst:2 -msgid "Web notifications" -msgstr "Web notifications" - -#: ../channels/web_notifications.rst:4 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." - -#: ../channels/web_notifications.rst:6 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." - -#: ../channels/web_notifications.rst:8 -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." - -#: ../channels/web_notifications.rst:11 -msgid "Setup web notifications" -msgstr "Setup web notifications" - -#: ../channels/web_notifications.rst:14 -msgid "Configuration" -msgstr "Configuration" - -#: ../channels/web_notifications.rst:16 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "Create a OneSignal account and once logged in, create an App" - -#: ../channels/web_notifications.rst:18 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "Setup App Website Push Platforms in your OneSignal App" - -#: ../channels/web_notifications.rst:0 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "Screenshot showing creating push platforms on OneSignal." - -#: ../channels/web_notifications.rst:24 -msgid "Select Typical Site and fill out the required fields." -msgstr "Select Typical Site and fill out the required fields." - -#: ../channels/web_notifications.rst:28 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." - -#: ../channels/web_notifications.rst:32 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "Get the keys from OneSignal under the Settings > Keys & IDs tab." - -#: ../channels/web_notifications.rst:33 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." - -#: ../channels/web_notifications.rst:36 -msgid "Sending notifications" -msgstr "Sending notifications" - -#: ../channels/web_notifications.rst:37 -msgid "There are two ways to send website notifications to the Contact:" -msgstr "There are two ways to send website notifications to the Contact:" - -#: ../channels/web_notifications.rst:39 -msgid "Send with a Campaign Action" -msgstr "Send with a Campaign Action" - -#: ../channels/web_notifications.rst:40 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "Send via a :doc:`/channels/marketing_messages`" diff --git a/docs/locale/en_GB/LC_MESSAGES/channels/emails.po b/docs/locale/en_GB/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 98edab32..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/channels/focus_items.po b/docs/locale/en_GB/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 9d5900e9..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/en_GB/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index b7a238fe..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/channels/push_notifications.po b/docs/locale/en_GB/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index b8f7dded..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/channels/sms.po b/docs/locale/en_GB/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 02b3aa1d..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/en_GB/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index a35dfb6c..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/channels/utm_tags.po b/docs/locale/en_GB/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index bb5e945f..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/channels/web_notifications.po b/docs/locale/en_GB/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 23d8266c..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/companies.po b/docs/locale/en_GB/LC_MESSAGES/companies.po deleted file mode 100644 index c88fdac6..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/companies.po +++ /dev/null @@ -1,355 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Ruth Cheesley , 2022 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: 2022-11-14 11:41+0000\n" -"Last-Translator: Ruth Cheesley , 2022\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../companies/companies_overview.rst:3 -msgid "Companies" -msgstr "Companies" - -#: ../companies/companies_overview.rst:5 -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" -"Companies are a way to group Contacts based on association with " -"organisations." - -#: ../companies/companies_overview.rstNone -msgid "Mautic Company Overview" -msgstr "Mautic Company Overview" - -#: ../companies/companies_overview.rst:12 -msgid "Engagements/Points chart" -msgstr "Engagements/Points chart" - -#: ../companies/companies_overview.rst:14 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." - -#: ../companies/companies_overview.rst:19 -msgid "List of Contacts assigned" -msgstr "List of Contacts assigned" - -#: ../companies/companies_overview.rst:23 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." - -#: ../companies/companies_overview.rst:26 -msgid "Company duplicates" -msgstr "Company duplicates" - -#: ../companies/companies_overview.rst:27 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." - -#: ../companies/companies_overview.rst:29 -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." - -#: ../companies/companies_overview.rstNone -msgid "Setup operator for find duplications algorithm" -msgstr "Setup operator for find duplications algorithm" - -#: ../companies/companies_overview.rst:35 -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." - -#: ../companies/companies_overview.rst:38 -msgid "Company actions" -msgstr "Company actions" - -#: ../companies/companies_overview.rst:43 -msgid "Merging Companies" -msgstr "Merging Companies" - -#: ../companies/companies_overview.rst:47 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." - -#: ../companies/companies_overview.rst:49 -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." - -#: ../companies/companies_overview.rst:51 -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." - -#: ../companies/companies_overview.rst:56 -msgid "Company Custom Fields" -msgstr "Company Custom Fields" - -#: ../companies/companies_overview.rst:60 -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" -"By default, a set of fields exist for Companies, but you can customise these" -" fields to meet your needs." - -#: ../companies/companies_overview.rst:62 -msgid "Go to **Custom Fields** and create a new field" -msgstr "Go to **Custom Fields** and create a new field" - -#: ../companies/companies_overview.rst:64 -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "Change the dropdown select box from Contact to Company objects" - -#: ../companies/companies_overview.rst:66 -msgid "Save the custom field" -msgstr "Save the custom field" - -#: ../companies/companies_overview.rst:71 -msgid "Company Segments" -msgstr "Company Segments" - -#: ../companies/companies_overview.rst:75 -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." - -#: ../companies/companies_overview.rst:80 -msgid "Identifying Companies" -msgstr "Identifying Companies" - -#: ../companies/companies_overview.rst:84 -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." - -#: ../companies/companies_overview.rst:89 -msgid "Company actions in Campaigns" -msgstr "Company actions in Campaigns" - -#: ../companies/companies_overview.rst:93 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" -"It's possible to add a Contact to a new Company based on a Campaign action." - -#: ../companies/companies_overview.rst:98 -msgid "Creating and managing Companies" -msgstr "Creating and managing Companies" - -#: ../companies/companies_overview.rst:102 -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." - -#: ../companies/companies_overview.rst:107 -msgid "Assigning Companies to Contacts" -msgstr "Assigning Companies to Contacts" - -#: ../companies/companies_overview.rst:111 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" -"There are different ways to assign a Company to a Contact as explained " -"below:" - -#: ../companies/companies_overview.rst:114 -msgid "Contact profile" -msgstr "Contact profile" - -#: ../companies/companies_overview.rst:116 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." - -#: ../companies/companies_overview.rst:119 -msgid "Contacts list view" -msgstr "Contacts list view" - -#: ../companies/companies_overview.rst:121 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." - -#: ../companies/companies_overview.rst:126 -msgid "Via a Campaign" -msgstr "Via a Campaign" - -#: ../companies/companies_overview.rst:130 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." - -#: ../companies/companies_overview.rst:135 -msgid "Through a Form" -msgstr "Through a Form" - -#: ../companies/companies_overview.rst:139 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" - -#: ../companies/companies_overview.rst:141 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," - -#: ../companies/companies_overview.rst:142 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," - -#: ../companies/companies_overview.rst:143 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," - -#: ../companies/companies_overview.rst:144 -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" -"The Form includes State as a form field - optional for Company " -"matching/creation." - -#: ../companies/companies_overview.rst:147 -msgid "Company scoring" -msgstr "Company scoring" - -#: ../companies/companies_overview.rst:149 -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." - -#: ../companies/companies_overview.rst:151 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" -"Select the **Change Company score** action in either a Form or a Campaign" - -#: ../companies/companies_overview.rst:152 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." - -#: ../companies/companies_overview.rst:157 -msgid "Setting the primary Company" -msgstr "Setting the primary Company" - -#: ../companies/companies_overview.rst:161 -msgid "You can set the primary Company through the Contact details interface." -msgstr "" -"You can set the primary Company through the Contact details interface." - -#: ../companies/companies_overview.rstNone -msgid "Screenshot showing setting the primary Company" -msgstr "Screenshot showing setting the primary Company" diff --git a/docs/locale/en_GB/LC_MESSAGES/companies/companies_overview.po b/docs/locale/en_GB/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index f01d52da..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/components/assets.po b/docs/locale/en_GB/LC_MESSAGES/components/assets.po deleted file mode 100644 index 69b26a1f..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/en_GB/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 20fa7546..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/components/forms.po b/docs/locale/en_GB/LC_MESSAGES/components/forms.po deleted file mode 100644 index 2d447938..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/components/landing_pages.po b/docs/locale/en_GB/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index effd9f85..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/configuration.po b/docs/locale/en_GB/LC_MESSAGES/configuration.po deleted file mode 100644 index ff29f7db..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/configuration.po +++ /dev/null @@ -1,2273 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Ruth Cheesley , 2022 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: 2022-11-14 11:43+0000\n" -"Last-Translator: Ruth Cheesley , 2022\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../configuration/command_line_interface.rst:4 -msgid "Command Line Interface (CLI) commands" -msgstr "Command Line Interface (CLI) commands" - -#: ../configuration/command_line_interface.rst:8 -msgid "" -"Mautic may require you to use the command line (CLI). Listed below are the " -"available CLI commands." -msgstr "" -"Mautic may require you to use the command line (CLI). Listed below are the " -"available CLI commands." - -#: ../configuration/command_line_interface.rst:12 -msgid "" -"You can find this list (and others - for example commands relating to " -"Doctrine and other vendors) by running this command: ``bin/console``" -msgstr "" -"You can find this list (and others - for example commands relating to " -"Doctrine and other vendors) by running this command: ``bin/console``" - -#: ../configuration/command_line_interface.rst:14 -msgid "You must be in the Mautic root directory to run the CLI commands." -msgstr "You must be in the Mautic root directory to run the CLI commands." - -#: ../configuration/command_line_interface.rst:16 -msgid "**Format**: command [options] [arguments]" -msgstr "**Format**: command [options] [arguments]" - -#: ../configuration/command_line_interface.rst:19 -#: ../configuration/command_line_interface.rst:27 -msgid "Options" -msgstr "Options" - -#: ../configuration/command_line_interface.rst:28 -#: ../configuration/command_line_interface.rst:78 -#: ../configuration/command_line_interface.rst:172 -msgid "Description" -msgstr "Description" - -#: ../configuration/command_line_interface.rst:29 -msgid "-h, \\--help" -msgstr "-h, \\--help" - -#: ../configuration/command_line_interface.rst:30 -msgid "Display this help message" -msgstr "Display this help message" - -#: ../configuration/command_line_interface.rst:31 -msgid "-q, \\--quiet" -msgstr "-q, \\--quiet" - -#: ../configuration/command_line_interface.rst:32 -msgid "Do not output any message" -msgstr "Do not output any message" - -#: ../configuration/command_line_interface.rst:0 -msgid "V, \\--version" -msgstr "V, \\--version" - -#: ../configuration/command_line_interface.rst:0 -msgid "\\--ansi" -msgstr "\\--ansi" - -#: ../configuration/command_line_interface.rst:0 -msgid "\\--no-ansi" -msgstr "\\--no-ansi" - -#: ../configuration/command_line_interface.rst:0 -msgid "Display this app version" -msgstr "Display this app version" - -#: ../configuration/command_line_interface.rst:0 -msgid "Force ANSI output" -msgstr "Force ANSI output" - -#: ../configuration/command_line_interface.rst:0 -msgid "Disable ANSI output" -msgstr "Disable ANSI output" - -#: ../configuration/command_line_interface.rst:39 -msgid "-n, \\--no-interaction" -msgstr "-n, \\--no-interaction" - -#: ../configuration/command_line_interface.rst:40 -msgid "Do not ask any interactive question" -msgstr "Do not ask any interactive question" - -#: ../configuration/command_line_interface.rst:0 -msgid "-s, \\--shell" -msgstr "-s, \\--shell" - -#: ../configuration/command_line_interface.rst:0 -msgid "\\--process-isolation" -msgstr "\\--process-isolation" - -#: ../configuration/command_line_interface.rst:0 -msgid "Launch the shell." -msgstr "Launch the shell." - -#: ../configuration/command_line_interface.rst:0 -msgid "Launch commands from shell as a separate process." -msgstr "Launch commands from shell as a separate process." - -#: ../configuration/command_line_interface.rst:0 -msgid "-e, \\--env=ENV" -msgstr "-e, \\--env=ENV" - -#: ../configuration/command_line_interface.rst:0 -msgid "\\--no-debug" -msgstr "\\--no-debug" - -#: ../configuration/command_line_interface.rst:0 -msgid "The Environment name. [default: \"prod\"]" -msgstr "The Environment name. [default: \"prod\"]" - -#: ../configuration/command_line_interface.rst:0 -msgid "Switches off debug mode." -msgstr "Switches off debug mode." - -#: ../configuration/command_line_interface.rst:0 -msgid "-v" -msgstr "-v" - -#: ../configuration/command_line_interface.rst:0 -msgid "-vv" -msgstr "-vv" - -#: ../configuration/command_line_interface.rst:0 -msgid "-vvv" -msgstr "-vvv" - -#: ../configuration/command_line_interface.rst:0 -msgid "\\--verbose" -msgstr "\\--verbose" - -#: ../configuration/command_line_interface.rst:0 -msgid "Increase the verbosity of messages:" -msgstr "Increase the verbosity of messages:" - -#: ../configuration/command_line_interface.rst:0 -msgid "1. for normal output," -msgstr "1. for normal output," - -#: ../configuration/command_line_interface.rst:0 -msgid "2. for more verbose output and" -msgstr "2. for more verbose output and" - -#: ../configuration/command_line_interface.rst:0 -msgid "3. for debug" -msgstr "3. for debug" - -#: ../configuration/command_line_interface.rst:62 -msgid "Mautic commands" -msgstr "Mautic commands" - -#: ../configuration/command_line_interface.rst:63 -msgid "" -"These are the commands you may need to use in relation to your Mautic " -"instance. Add a ``bin/console`` before Mautic command." -msgstr "" -"These are the commands you may need to use in relation to your Mautic " -"instance. Add a ``bin/console`` before Mautic command." - -#: ../configuration/command_line_interface.rst:65 -msgid "**Example**" -msgstr "**Example**" - -#: ../configuration/command_line_interface.rst:77 -#: ../configuration/command_line_interface.rst:171 -msgid "Command" -msgstr "Command" - -#: ../configuration/command_line_interface.rst:79 -msgid "mautic:assets:generate" -msgstr "mautic:assets:generate" - -#: ../configuration/command_line_interface.rst:80 -msgid "" -"Combines and minifies Asset files (CSS/JS) from each bundle into single " -"production files" -msgstr "" -"Combines and minifies Asset files (CSS/JS) from each bundle into single " -"production files" - -#: ../configuration/command_line_interface.rst:81 -msgid "mautic:broadcasts:send" -msgstr "mautic:broadcasts:send" - -#: ../configuration/command_line_interface.rst:82 -msgid "Process Contacts pending to receive a Channel broadcast." -msgstr "Process Contacts pending to receive a Channel broadcast." - -#: ../configuration/command_line_interface.rst:83 -msgid "mautic:campaigns:execute" -msgstr "mautic:campaigns:execute" - -#: ../configuration/command_line_interface.rst:84 -msgid "Execute specific scheduled events." -msgstr "Execute specific scheduled events." - -#: ../configuration/command_line_interface.rst:85 -msgid "mautic:campaigns:messagequeue" -msgstr "mautic:campaigns:messagequeue" - -#: ../configuration/command_line_interface.rst:86 -#: ../configuration/command_line_interface.rst:88 -msgid "" -"Process sending of messages queue, you can also use the alias of " -"``mautic:messages:send``." -msgstr "" -"Process sending of messages queue, you can also use the alias of " -"``mautic:messages:send``." - -#: ../configuration/command_line_interface.rst:87 -msgid "mautic:campaigns:messages" -msgstr "mautic:campaigns:messages" - -#: ../configuration/command_line_interface.rst:89 -msgid "mautic:campaigns:rebuild" -msgstr "mautic:campaigns:rebuild" - -#: ../configuration/command_line_interface.rst:90 -msgid "" -"Rebuild Campaigns based on Contact Segments, you can also use the alias of " -"``mautic:messages:update``." -msgstr "" -"Rebuild Campaigns based on Contact Segments, you can also use the alias of " -"``mautic:messages:update``." - -#: ../configuration/command_line_interface.rst:91 -msgid "mautic:campaigns:trigger" -msgstr "mautic:campaigns:trigger" - -#: ../configuration/command_line_interface.rst:92 -msgid "Trigger timed events for published Campaigns." -msgstr "Trigger timed events for published Campaigns." - -#: ../configuration/command_line_interface.rst:93 -msgid "mautic:campaigns:update" -msgstr "mautic:campaigns:update" - -#: ../configuration/command_line_interface.rst:94 -msgid "" -"Rebuild Campaigns based on Contact Segments, you can also use the alias of " -"``mautic:messages:rebuild``." -msgstr "" -"Rebuild Campaigns based on Contact Segments, you can also use the alias of " -"``mautic:messages:rebuild``." - -#: ../configuration/command_line_interface.rst:95 -msgid "mautic:campaigns:validate" -msgstr "mautic:campaigns:validate" - -#: ../configuration/command_line_interface.rst:96 -msgid "" -"Validate if a Contact has been inactive for a decision and execute events if" -" so." -msgstr "" -"Validate if a Contact has been inactive for a decision and execute events if" -" so." - -#: ../configuration/command_line_interface.rst:97 -msgid "mautic:citrix:sync" -msgstr "mautic:citrix:sync" - -#: ../configuration/command_line_interface.rst:98 -msgid "Synchronizes registrant information from Citrix products" -msgstr "Synchronises registrant information from Citrix products" - -#: ../configuration/command_line_interface.rst:99 -msgid "mautic:cache:clear" -msgstr "mautic:cache:clear" - -#: ../configuration/command_line_interface.rst:100 -msgid "" -"Clears Mautic cache, by using this command, you will erase the 10-minute " -"Mautic cache, which contains things like segment counts and data for " -"dashboard widgets." -msgstr "" -"Clears Mautic cache, by using this command, you will erase the 10-minute " -"Mautic cache, which contains things like segment counts and data for " -"dashboard widgets." - -#: ../configuration/command_line_interface.rst:101 -msgid "mautic:contacts:deduplicate" -msgstr "mautic:contacts:deduplicate" - -#: ../configuration/command_line_interface.rst:102 -msgid "Merge Contacts based on same unique identifiers" -msgstr "Merge Contacts based on same unique identifiers" - -#: ../configuration/command_line_interface.rst:103 -msgid "mautic:custom-field:create-column" -msgstr "mautic:custom-field:create-column" - -#: ../configuration/command_line_interface.rst:104 -msgid "Creates the actual column in the table" -msgstr "Creates the actual column in the table" - -#: ../configuration/command_line_interface.rst:105 -msgid "mautic:email:fetch" -msgstr "mautic:email:fetch" - -#: ../configuration/command_line_interface.rst:106 -msgid "" -"Fetch and process monitored Email, you can also use the alias of " -"``mautic:email:fetch``." -msgstr "" -"Fetch and process monitored Email, you can also use the alias of " -"``mautic:email:fetch``." - -#: ../configuration/command_line_interface.rst:107 -msgid "mautic:emails:send" -msgstr "mautic:emails:send" - -#: ../configuration/command_line_interface.rst:108 -msgid "Processes mail queue" -msgstr "Processes mail queue" - -#: ../configuration/command_line_interface.rst:109 -msgid "mautic:import" -msgstr "mautic:import" - -#: ../configuration/command_line_interface.rst:110 -msgid "" -"If the CSV import is configured to run in background then this command will " -"pick up the pending import jobs and imports the data from CSV files to " -"Mautic." -msgstr "" -"If the CSV import is configured to run in background then this command will " -"pick up the pending import jobs and imports the data from CSV files to " -"Mautic." - -#: ../configuration/command_line_interface.rst:111 -msgid "mautic:integration:fetchleads" -msgstr "mautic:integration:fetchleads" - -#: ../configuration/command_line_interface.rst:112 -msgid "" -"Fetch Contacts from Integration, you can also use the alias of " -"``mautic:integration:synccontacts``." -msgstr "" -"Fetch Contacts from Integration, you can also use the alias of " -"``mautic:integration:synccontacts``." - -#: ../configuration/command_line_interface.rst:113 -msgid "mautic:integration:pipedrive:fetch" -msgstr "mautic:integration:pipedrive:fetch" - -#: ../configuration/command_line_interface.rst:114 -msgid "Pulls the data from Pipedrive and sends it to Mautic" -msgstr "Pulls the data from Pipedrive and sends it to Mautic" - -#: ../configuration/command_line_interface.rst:115 -msgid "mautic:integration:pipedrive:push" -msgstr "mautic:integration:pipedrive:push" - -#: ../configuration/command_line_interface.rst:116 -msgid "Pushes the data from Mautic to Pipedrive" -msgstr "Pushes the data from Mautic to Pipedrive" - -#: ../configuration/command_line_interface.rst:117 -msgid "mautic:integration:pushactivity" -msgstr "mautic:integration:pushactivity" - -#: ../configuration/command_line_interface.rst:118 -msgid "" -"Push Contact activity to Integration, you can also use the alias of " -"``mautic:integration:pushleadactivity``." -msgstr "" -"Push Contact activity to Integration, you can also use the alias of " -"``mautic:integration:pushleadactivity``." - -#: ../configuration/command_line_interface.rst:119 -msgid "mautic:integration:pushleadactivity" -msgstr "mautic:integration:pushleadactivity" - -#: ../configuration/command_line_interface.rst:120 -msgid "" -"Push Contact activity to Integration, you can also use the alias of " -"``mautic:integration:pushactivity``." -msgstr "" -"Push Contact activity to Integration, you can also use the alias of " -"``mautic:integration:pushactivity``." - -#: ../configuration/command_line_interface.rst:121 -msgid "mautic:integration:synccontacts" -msgstr "mautic:integration:synccontacts" - -#: ../configuration/command_line_interface.rst:122 -msgid "" -"Fetch Contacts from Integration, you can also use the alias of " -"``mautic:integration:fetchleads``." -msgstr "" -"Fetch Contacts from Integration, you can also use the alias of " -"``mautic:integration:fetchleads``." - -#: ../configuration/command_line_interface.rst:123 -msgid "mautic:install:data" -msgstr "mautic:install:data" - -#: ../configuration/command_line_interface.rst:124 -msgid "Installs data" -msgstr "Installs data" - -#: ../configuration/command_line_interface.rst:125 -msgid "mautic:iplookup:download" -msgstr "mautic:iplookup:download" - -#: ../configuration/command_line_interface.rst:126 -msgid "" -"Fetch remote datastores for IP lookup services that leverage local lookups." -msgstr "" -"Fetch remote datastores for IP lookup services that leverage local lookups." - -#: ../configuration/command_line_interface.rst:127 -msgid "mautic:maintenance:cleanup" -msgstr "mautic:maintenance:cleanup" - -#: ../configuration/command_line_interface.rst:128 -msgid "Cleans up older data." -msgstr "Cleans up older data." - -#: ../configuration/command_line_interface.rst:129 -msgid "mautic:messages:send" -msgstr "mautic:messages:send" - -#: ../configuration/command_line_interface.rst:130 -msgid "" -"Process sending of messages queue, you can also use the alias of " -"``mautic:campaigns:messagequeue`` and ``mautic:campaigns:messages``." -msgstr "" -"Process sending of messages queue, you can also use the alias of " -"``mautic:campaigns:messagequeue`` and ``mautic:campaigns:messages``." - -#: ../configuration/command_line_interface.rst:131 -msgid "doctrine:migrations:generate" -msgstr "doctrine:migrations:generate" - -#: ../configuration/command_line_interface.rst:132 -msgid "Generate a blank migration class." -msgstr "Generate a blank migration class." - -#: ../configuration/command_line_interface.rst:133 -msgid "mautic:plugins:install" -msgstr "mautic:plugins:install" - -#: ../configuration/command_line_interface.rst:134 -msgid "" -"Installs Plugins, you can also use the alias of ``mautic:plugins:reload``." -msgstr "" -"Installs Plugins, you can also use the alias of ``mautic:plugins:reload``." - -#: ../configuration/command_line_interface.rst:135 -msgid "mautic:plugins:reload" -msgstr "mautic:plugins:reload" - -#: ../configuration/command_line_interface.rst:136 -msgid "" -"Reloads Plugins, you can also use the alias of ``mautic:plugins:install`` or" -" ``mautic:plugins:update``." -msgstr "" -"Reloads Plugins, you can also use the alias of ``mautic:plugins:install`` or" -" ``mautic:plugins:update``." - -#: ../configuration/command_line_interface.rst:137 -msgid "mautic:plugins:update" -msgstr "mautic:plugins:update" - -#: ../configuration/command_line_interface.rst:138 -msgid "" -"Updates Plugins, you can also use the alias of ``mautic:plugins:reload``." -msgstr "" -"Updates Plugins, you can also use the alias of ``mautic:plugins:reload``." - -#: ../configuration/command_line_interface.rst:139 -msgid "mautic:queue:process" -msgstr "mautic:queue:process" - -#: ../configuration/command_line_interface.rst:140 -msgid "Process queues" -msgstr "Process queues" - -#: ../configuration/command_line_interface.rst:141 -msgid "mautic:reports:scheduler" -msgstr "mautic:reports:scheduler" - -#: ../configuration/command_line_interface.rst:142 -msgid "Processes scheduler for Report's export" -msgstr "Processes scheduler for Report's export" - -#: ../configuration/command_line_interface.rst:143 -msgid "mautic:segments:rebuild" -msgstr "mautic:segments:rebuild" - -#: ../configuration/command_line_interface.rst:144 -msgid "" -"Update Contacts in smart Segments based on new Contact data, you can also " -"use the alias of ``mautic:segments:update``." -msgstr "" -"Update Contacts in smart Segments based on new Contact data, you can also " -"use the alias of ``mautic:segments:update``." - -#: ../configuration/command_line_interface.rst:145 -msgid "mautic:segments:update" -msgstr "mautic:segments:update" - -#: ../configuration/command_line_interface.rst:146 -msgid "" -"Update Contacts in smart Segments based on new Contact data, , you can also " -"use the alias of ``mautic:segments:rebuild``." -msgstr "" -"Update Contacts in smart Segments based on new Contact data, , you can also " -"use the alias of ``mautic:segments:rebuild``." - -#: ../configuration/command_line_interface.rst:147 -msgid "mautic:theme:json-config" -msgstr "mautic:theme:json-config" - -#: ../configuration/command_line_interface.rst:148 -msgid "Converts Theme config to JSON from PHP" -msgstr "Converts Theme config to JSON from PHP" - -#: ../configuration/command_line_interface.rst:149 -msgid "mautic:unusedip:delete" -msgstr "mautic:unusedip:delete" - -#: ../configuration/command_line_interface.rst:150 -msgid "Deletes IP addresses that aren't used in any other database table" -msgstr "Deletes IP addresses that aren't used in any other database table" - -#: ../configuration/command_line_interface.rst:151 -msgid "mautic:update:apply" -msgstr "mautic:update:apply" - -#: ../configuration/command_line_interface.rst:152 -msgid "Updates the Mautic app." -msgstr "Updates the Mautic app." - -#: ../configuration/command_line_interface.rst:153 -msgid "mautic:update:find" -msgstr "mautic:update:find" - -#: ../configuration/command_line_interface.rst:154 -msgid "Fetches updates for Mautic" -msgstr "Fetches updates for Mautic" - -#: ../configuration/command_line_interface.rst:155 -msgid "mautic:webhooks:process" -msgstr "mautic:webhooks:process" - -#: ../configuration/command_line_interface.rst:156 -msgid "Process queued Webhook payloads" -msgstr "Process queued Webhook payloads" - -#: ../configuration/command_line_interface.rst:157 -msgid "social:monitor:twitter:hashtags" -msgstr "social:monitor:twitter:hashtags" - -#: ../configuration/command_line_interface.rst:158 -msgid "Looks at the monitoring records and finds hashtags." -msgstr "Looks at the monitoring records and finds hashtags." - -#: ../configuration/command_line_interface.rst:159 -msgid "social:monitor:twitter:mentions" -msgstr "social:monitor:twitter:mentions" - -#: ../configuration/command_line_interface.rst:160 -msgid "Searches for mentioned tweets" -msgstr "Searches for mentioned tweets" - -#: ../configuration/command_line_interface.rst:165 -msgid "Doctrine commands" -msgstr "Doctrine commands" - -#: ../configuration/command_line_interface.rst:173 -msgid "doctrine:fixtures:load" -msgstr "doctrine:fixtures:load" - -#: ../configuration/command_line_interface.rst:174 -msgid "Installs Mautic sample data, overwriting existing data." -msgstr "Installs Mautic sample data, overwriting existing data." - -#: ../configuration/cron_jobs.rst:4 -msgid "Cron jobs" -msgstr "Cron jobs" - -#: ../configuration/cron_jobs.rst:10 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" - -#: ../configuration/cron_jobs.rst:12 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." - -#: ../configuration/cron_jobs.rst:17 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." - -#: ../configuration/cron_jobs.rst:19 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." - -#: ../configuration/cron_jobs.rst:21 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" - -#: ../configuration/cron_jobs.rst:23 -msgid "For instance:" -msgstr "For instance:" - -#: ../configuration/cron_jobs.rst:32 -msgid "Required" -msgstr "Required" - -#: ../configuration/cron_jobs.rst:34 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" - -#: ../configuration/cron_jobs.rst:37 -msgid "Segment cron jobs" -msgstr "Segment cron jobs" - -#: ../configuration/cron_jobs.rst:39 -msgid "**To keep the Segments current:**" -msgstr "**To keep the Segments current:**" - -#: ../configuration/cron_jobs.rst:45 ../configuration/cron_jobs.rst:62 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." - -#: ../configuration/cron_jobs.rst:47 ../configuration/cron_jobs.rst:64 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." - -#: ../configuration/cron_jobs.rst:52 -msgid "Campaign cron jobs" -msgstr "Campaign cron jobs" - -#: ../configuration/cron_jobs.rst:56 -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "**To keep Campaigns updated with applicable Contacts:**" - -#: ../configuration/cron_jobs.rst:66 -msgid "**To execute Campaigns events:**" -msgstr "**To execute Campaigns events:**" - -#: ../configuration/cron_jobs.rst:72 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." - -#: ../configuration/cron_jobs.rst:74 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." - -#: ../configuration/cron_jobs.rst:78 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" - -#: ../configuration/cron_jobs.rst:82 -msgid "``mautic:messages:send``" -msgstr "``mautic:messages:send``" - -#: ../configuration/cron_jobs.rst:86 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." - -#: ../configuration/cron_jobs.rst:89 -msgid "Optional" -msgstr "Optional" - -#: ../configuration/cron_jobs.rst:91 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" - -#: ../configuration/cron_jobs.rst:96 -msgid "Process Email queue cron job" -msgstr "Process Email queue cron job" - -#: ../configuration/cron_jobs.rst:100 -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" -"If the system configuration is queueing Emails, a cron job processes them." - -#: ../configuration/cron_jobs.rst:109 -msgid "Fetch and process Monitored Email cron job" -msgstr "Fetch and process Monitored Email cron job" - -#: ../configuration/cron_jobs.rst:113 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" - -#: ../configuration/cron_jobs.rst:122 -msgid "Social Monitoring cron job" -msgstr "Social Monitoring cron job" - -#: ../configuration/cron_jobs.rst:126 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" - -#: ../configuration/cron_jobs.rst:135 -msgid "Import Contacts cron job" -msgstr "Import Contacts cron job" - -#: ../configuration/cron_jobs.rst:139 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" - -#: ../configuration/cron_jobs.rst:145 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." - -#: ../configuration/cron_jobs.rst:148 -msgid "Webhooks cron job" -msgstr "Webhooks cron job" - -#: ../configuration/cron_jobs.rst:150 -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" - -#: ../configuration/cron_jobs.rst:161 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "Update MaxMind GeoLite2 IP database cron job" - -#: ../configuration/cron_jobs.rst:165 -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." - -#: ../configuration/cron_jobs.rst:175 -msgid "Clean up old data cron job" -msgstr "Clean up old data cron job" - -#: ../configuration/cron_jobs.rst:177 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." - -#: ../configuration/cron_jobs.rst:180 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." - -#: ../configuration/cron_jobs.rst:182 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" - -#: ../configuration/cron_jobs.rst:189 -msgid "MaxMind CCPA compliance cron job" -msgstr "MaxMind CCPA compliance cron job" - -#: ../configuration/cron_jobs.rst:191 -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." - -#: ../configuration/cron_jobs.rst:193 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "See more details in the official :xref:`MaxMind website`." - -#: ../configuration/cron_jobs.rst:195 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" -"It's recommended to run these two commands once per week, one after another." - -#: ../configuration/cron_jobs.rst:201 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." - -#: ../configuration/cron_jobs.rst:207 -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." - -#: ../configuration/cron_jobs.rst:212 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "Send scheduled broadcasts (Segment Emails) cron job" - -#: ../configuration/cron_jobs.rst:216 -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." - -#: ../configuration/cron_jobs.rst:218 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." - -#: ../configuration/cron_jobs.rst:225 -msgid "Command parameters:" -msgstr "Command parameters:" - -#: ../configuration/cron_jobs.rst:227 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." - -#: ../configuration/cron_jobs.rst:229 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "``--id=X`` is what ID of Email, SMS or other entity to send." - -#: ../configuration/cron_jobs.rst:231 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." - -#: ../configuration/cron_jobs.rst:233 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." - -#: ../configuration/cron_jobs.rst:235 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." - -#: ../configuration/cron_jobs.rst:240 -msgid "Send scheduled Reports cron job" -msgstr "Send scheduled Reports cron job" - -#: ../configuration/cron_jobs.rst:244 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." - -#: ../configuration/cron_jobs.rst:252 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." - -#: ../configuration/cron_jobs.rst:257 -msgid "Configure Mautic Integration cron jobs" -msgstr "Configure Mautic Integration cron jobs" - -#: ../configuration/cron_jobs.rst:261 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." - -#: ../configuration/cron_jobs.rst:263 -msgid "**To fetch Contacts from the Integration:**" -msgstr "**To fetch Contacts from the Integration:**" - -#: ../configuration/cron_jobs.rst:269 ../configuration/cron_jobs.rst:281 -msgid "or" -msgstr "or" - -#: ../configuration/cron_jobs.rst:275 -msgid "**To push Contact activity to an Integration:**" -msgstr "**To push Contact activity to an Integration:**" - -#: ../configuration/cron_jobs.rst:287 -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" - -#: ../configuration/cron_jobs.rst:294 -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "**To install, update, turn on or turn off Plugins:**" - -#: ../configuration/cron_jobs.rst:302 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." - -#: ../configuration/cron_jobs.rst:306 -msgid "Tips & troubleshooting" -msgstr "Tips & troubleshooting" - -#: ../configuration/cron_jobs.rst:308 -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." - -#: ../configuration/cron_jobs.rst:310 -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." - -#: ../configuration/cron_jobs.rst:312 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." - -#: ../configuration/cron_jobs.rst:314 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." - -#: ../configuration/cron_jobs.rst:316 -msgid "Example output" -msgstr "Example output" - -#: ../configuration/cron_jobs.rst:326 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" - -#: ../configuration/cron_jobs.rst:329 -msgid "Tracking script" -msgstr "Tracking script" - -#: ../configuration/cron_jobs.rst:331 -msgid "" -"After installation and setup of the :doc:`/configuration/cron_jobs` you're " -"ready to begin tracking Contacts. You need to add a piece of JavaScript to " -"the websites for each site you wish to track through Mautic." -msgstr "" -"After installation and setup of the :doc:`/configuration/cron_jobs` you're " -"ready to begin tracking Contacts. You need to add a piece of JavaScript to " -"the websites for each site you wish to track through Mautic." - -#: ../configuration/cron_jobs.rst:333 -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." - -#: ../configuration/cron_jobs.rst:335 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." - -#: ../configuration/cron_jobs.rst:346 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." - -#: ../configuration/maxmind_license.rst:2 -msgid "MaxMind license" -msgstr "MaxMind license" - -#: ../configuration/maxmind_license.rst:4 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." - -#: ../configuration/maxmind_license.rst:8 -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." - -#: ../configuration/maxmind_license.rst:10 -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" -"Follow these steps to configure your Mautic instance to use the license key." - -#: ../configuration/maxmind_license.rst:12 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "Create a MaxMind account by going to :xref:`MaxMind Signup`" - -#: ../configuration/maxmind_license.rst:14 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." - -#: ../configuration/maxmind_license.rst:16 -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "Click the Contact icon at the top right of the menu to login" - -#: ../configuration/maxmind_license.rstNone -msgid "Screenshot of MaxMind Account" -msgstr "Screenshot of MaxMind Account" - -#: ../configuration/maxmind_license.rst:22 -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" - -#: ../configuration/maxmind_license.rstNone -#: ../configuration/maxmind_license.rstNone -#: ../configuration/maxmind_license.rstNone -msgid "Screenshot of MaxMind license key" -msgstr "Screenshot of MaxMind license key" - -#: ../configuration/maxmind_license.rst:28 -msgid "Then, Click ``Generate new License Key``" -msgstr "Then, Click ``Generate new License Key``" - -#: ../configuration/maxmind_license.rstNone -msgid "Screenshot of MaxMind Generate key" -msgstr "Screenshot of MaxMind Generate key" - -#: ../configuration/maxmind_license.rst:34 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" -"Answer ``Will this key be used for GeoIP Update?`` with No and confirm" - -#: ../configuration/maxmind_license.rstNone -msgid "Screenshot of MaxMind confirm key" -msgstr "Screenshot of MaxMind confirm key" - -#: ../configuration/maxmind_license.rst:40 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" - -#: ../configuration/maxmind_license.rst:46 -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." - -#: ../configuration/maxmind_license.rst:52 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." - -#: ../configuration/maxmind_license.rst:54 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "Set up the :ref:`cron jobs` to periodically download a fresh copy." - -#: ../configuration/settings.rst:4 -msgid "Mautic Configuration Settings" -msgstr "Mautic Configuration Settings" - -#: ../configuration/settings.rst:9 -msgid "System settings" -msgstr "System settings" - -#: ../configuration/settings.rst:12 -msgid "General settings" -msgstr "General settings" - -#: ../configuration/settings.rst:15 -msgid "System defaults" -msgstr "System defaults" - -#: ../configuration/settings.rst:18 -msgid "CORS settings" -msgstr "CORS settings" - -#: ../configuration/settings.rst:21 -msgid "Miscellaneous settings" -msgstr "Miscellaneous settings" - -#: ../configuration/settings.rst:24 -msgid "Update settings" -msgstr "Update settings" - -#: ../configuration/settings.rst:27 -msgid "Theme settings" -msgstr "Theme settings" - -#: ../configuration/settings.rst:30 -msgid "API settings" -msgstr "API settings" - -#: ../configuration/settings.rst:33 -msgid "Asset settings" -msgstr "Asset settings" - -#: ../configuration/settings.rst:36 -msgid "Campaign settings" -msgstr "Campaign settings" - -#: ../configuration/settings.rst:39 -msgid "Email settings" -msgstr "Email settings" - -#: ../configuration/settings.rst:42 -msgid "Mail send settings" -msgstr "Mail send settings" - -#: ../configuration/settings.rst:45 -msgid "Default frequency rule" -msgstr "Default frequency rule" - -#: ../configuration/settings.rst:48 -msgid "Monitored inbox settings" -msgstr "Monitored inbox settings" - -#: ../configuration/settings.rst:51 -msgid "Message settings" -msgstr "Message settings" - -#: ../configuration/settings.rst:54 -msgid "Unsubscribe settings" -msgstr "Unsubscribe settings" - -#: ../configuration/settings.rst:57 -msgid "Form settings" -msgstr "Form settings" - -#: ../configuration/settings.rst:60 -msgid "Contact settings" -msgstr "Contact settings" - -#: ../configuration/settings.rst:63 -msgid "Contact merge settings" -msgstr "Contact merge settings" - -#: ../configuration/settings.rst:66 -msgid "Contact list settings" -msgstr "Contact list settings" - -#: ../configuration/settings.rst:69 -msgid "Import settings" -msgstr "Import settings" - -#: ../configuration/settings.rst:72 -msgid "Segment settings" -msgstr "Segment settings" - -#: ../configuration/settings.rst:75 -msgid "Company settings" -msgstr "Company settings" - -#: ../configuration/settings.rst:78 -msgid "Notification settings" -msgstr "Notification settings" - -#: ../configuration/settings.rst:81 -msgid "Campaign notification settings" -msgstr "Campaign notification settings" - -#: ../configuration/settings.rst:84 -msgid "Webhook notification settings" -msgstr "Webhook notification settings" - -#: ../configuration/settings.rst:87 -msgid "Landing page settings" -msgstr "Landing page settings" - -#: ../configuration/settings.rst:90 -msgid "Tracking settings" -msgstr "Tracking settings" - -#: ../configuration/settings.rst:93 -msgid "Mautic tracking settings" -msgstr "Mautic tracking settings" - -#: ../configuration/settings.rst:96 -msgid "Facebook pixel" -msgstr "Facebook pixel" - -#: ../configuration/settings.rst:99 -msgid "Google Analytics" -msgstr "Google Analytics" - -#: ../configuration/settings.rst:102 -msgid "Report settings" -msgstr "Report settings" - -#: ../configuration/settings.rst:105 -msgid "Text message settings" -msgstr "Text message settings" - -#: ../configuration/settings.rst:108 -msgid "User/Authentication settings" -msgstr "User/Authentication settings" - -#: ../configuration/settings.rst:111 -msgid "SAML/SSO settings" -msgstr "SAML/SSO settings" - -#: ../configuration/settings.rst:114 -msgid "Webhook settings" -msgstr "Webhook settings" - -#: ../configuration/settings.rst:117 -msgid "Social settings" -msgstr "Social settings" - -#: ../configuration/variables.rst:2 -msgid "Variables" -msgstr "Variables" - -#: ../configuration/variables.rst:5 -msgid "Default Value" -msgstr "Default Value" - -#: ../configuration/variables.rst:7 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" - -#: ../configuration/variables.rst:9 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "``Hi {contactfield=firstname|there},``" - -#: ../configuration/variables.rst:12 -msgid "Contact fields" -msgstr "Contact fields" - -#: ../configuration/variables.rst:14 -msgid "" -"See :doc:`managing custom fields ` for more " -"information." -msgstr "" -"See :doc:`managing custom fields ` for more " -"information." - -#: ../configuration/variables.rst:20 ../configuration/variables.rst:85 -#: ../configuration/variables.rst:107 ../configuration/variables.rst:150 -#: ../configuration/variables.rst:171 ../configuration/variables.rst:196 -#: ../configuration/variables.rst:219 ../configuration/variables.rst:242 -#: ../configuration/variables.rst:257 ../configuration/variables.rst:296 -msgid "Variable name" -msgstr "Variable name" - -#: ../configuration/variables.rst:21 ../configuration/variables.rst:86 -#: ../configuration/variables.rst:108 ../configuration/variables.rst:151 -#: ../configuration/variables.rst:172 ../configuration/variables.rst:197 -#: ../configuration/variables.rst:220 ../configuration/variables.rst:243 -#: ../configuration/variables.rst:258 ../configuration/variables.rst:297 -msgid "Variable syntax" -msgstr "Variable syntax" - -#: ../configuration/variables.rst:22 ../configuration/variables.rst:310 -msgid "Attribution" -msgstr "Attribution" - -#: ../configuration/variables.rst:23 ../configuration/variables.rst:311 -msgid "``{contactfield=attribution}``" -msgstr "``{contactfield=attribution}``" - -#: ../configuration/variables.rst:24 ../configuration/variables.rst:312 -msgid "Attribution Date" -msgstr "Attribution Date" - -#: ../configuration/variables.rst:25 ../configuration/variables.rst:313 -msgid "``{contactfield=attribution_date}``" -msgstr "``{contactfield=attribution_date}``" - -#: ../configuration/variables.rst:26 ../configuration/variables.rst:298 -msgid "Address Line 1" -msgstr "Address Line 1" - -#: ../configuration/variables.rst:27 ../configuration/variables.rst:299 -#: ../configuration/variables.rst:301 -msgid "``{contactfield=address1}``" -msgstr "``{contactfield=address1}``" - -#: ../configuration/variables.rst:28 ../configuration/variables.rst:302 -msgid "Address Line 2" -msgstr "Address Line 2" - -#: ../configuration/variables.rst:29 ../configuration/variables.rst:303 -msgid "``{contactfield=address2}``" -msgstr "``{contactfield=address2}``" - -#: ../configuration/variables.rst:30 ../configuration/variables.rst:322 -msgid "Country" -msgstr "Country" - -#: ../configuration/variables.rst:31 ../configuration/variables.rst:323 -msgid "``{contactfield=country}``" -msgstr "``{contactfield=country}``" - -#: ../configuration/variables.rst:32 ../configuration/variables.rst:318 -msgid "City" -msgstr "City" - -#: ../configuration/variables.rst:33 ../configuration/variables.rst:319 -msgid "``{contactfield=city}``" -msgstr "``{contactfield=city}``" - -#: ../configuration/variables.rst:34 ../configuration/variables.rst:326 -msgid "Company" -msgstr "Company" - -#: ../configuration/variables.rst:35 ../configuration/variables.rst:327 -msgid "``{contactfield=company}``" -msgstr "``{contactfield=company}``" - -#: ../configuration/variables.rst:36 ../configuration/variables.rst:328 -msgid "Contact ID" -msgstr "Contact ID" - -#: ../configuration/variables.rst:37 ../configuration/variables.rst:329 -msgid "``{contactfield=id}``" -msgstr "``{contactfield=id}``" - -#: ../configuration/variables.rst:38 ../configuration/variables.rst:91 -#: ../configuration/variables.rst:334 -msgid "Email" -msgstr "Email" - -#: ../configuration/variables.rst:39 ../configuration/variables.rst:335 -msgid "``{contactfield=email}``" -msgstr "``{contactfield=email}``" - -#: ../configuration/variables.rst:40 ../configuration/variables.rst:338 -msgid "Facebook" -msgstr "Facebook" - -#: ../configuration/variables.rst:41 ../configuration/variables.rst:339 -msgid "``{contactfield=facebook}``" -msgstr "``{contactfield=facebook}``" - -#: ../configuration/variables.rst:42 ../configuration/variables.rst:340 -msgid "Fax" -msgstr "Fax" - -#: ../configuration/variables.rst:43 ../configuration/variables.rst:341 -msgid "``{contactfield=fax}``" -msgstr "``{contactfield=fax}``" - -#: ../configuration/variables.rst:44 ../configuration/variables.rst:87 -#: ../configuration/variables.rst:348 -msgid "First Name" -msgstr "First Name" - -#: ../configuration/variables.rst:45 ../configuration/variables.rst:349 -msgid "``{contactfield=firstname}``" -msgstr "``{contactfield=firstname}``" - -#: ../configuration/variables.rst:46 ../configuration/variables.rst:350 -msgid "Foursquare" -msgstr "Foursquare" - -#: ../configuration/variables.rst:47 ../configuration/variables.rst:351 -msgid "``{contactfield=foursquare}``" -msgstr "``{contactfield=foursquare}``" - -#: ../configuration/variables.rst:48 ../configuration/variables.rst:352 -msgid "Google+" -msgstr "Google+" - -#: ../configuration/variables.rst:49 ../configuration/variables.rst:353 -msgid "``{contactfield=googleplus}``" -msgstr "``{contactfield=googleplus}``" - -#: ../configuration/variables.rst:50 ../configuration/variables.rst:354 -msgid "Instagram" -msgstr "Instagram" - -#: ../configuration/variables.rst:51 ../configuration/variables.rst:355 -msgid "``{contactfield=instagram}``" -msgstr "``{contactfield=instagram}``" - -#: ../configuration/variables.rst:52 ../configuration/variables.rst:356 -msgid "IP Address" -msgstr "IP Address" - -#: ../configuration/variables.rst:53 ../configuration/variables.rst:357 -msgid "``{contactfield=ipAddress}``" -msgstr "``{contactfield=ipAddress}``" - -#: ../configuration/variables.rst:54 ../configuration/variables.rst:89 -#: ../configuration/variables.rst:362 -msgid "Last Name" -msgstr "Last Name" - -#: ../configuration/variables.rst:55 ../configuration/variables.rst:363 -msgid "``{contactfield=lastname}``" -msgstr "``{contactfield=lastname}``" - -#: ../configuration/variables.rst:56 ../configuration/variables.rst:366 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../configuration/variables.rst:57 ../configuration/variables.rst:367 -msgid "``{contactfield=linkedin}``" -msgstr "``{contactfield=linkedin}``" - -#: ../configuration/variables.rst:58 ../configuration/variables.rst:370 -msgid "Mobile Number" -msgstr "Mobile Number" - -#: ../configuration/variables.rst:59 ../configuration/variables.rst:371 -msgid "``{contactfield=mobile}``" -msgstr "``{contactfield=mobile}``" - -#: ../configuration/variables.rst:60 ../configuration/variables.rst:376 -msgid "Phone Number" -msgstr "Phone Number" - -#: ../configuration/variables.rst:61 ../configuration/variables.rst:377 -msgid "``{contactfield=phone}``" -msgstr "``{contactfield=phone}``" - -#: ../configuration/variables.rst:62 ../configuration/variables.rst:93 -#: ../configuration/variables.rst:380 -msgid "Position" -msgstr "Position" - -#: ../configuration/variables.rst:63 ../configuration/variables.rst:381 -msgid "``{contactfield=position}``" -msgstr "``{contactfield=position}``" - -#: ../configuration/variables.rst:64 ../configuration/variables.rst:388 -msgid "Skype" -msgstr "Skype" - -#: ../configuration/variables.rst:65 ../configuration/variables.rst:389 -msgid "``{contactfield=skype}``" -msgstr "``{contactfield=skype}``" - -#: ../configuration/variables.rst:66 ../configuration/variables.rst:390 -msgid "State" -msgstr "State" - -#: ../configuration/variables.rst:67 ../configuration/variables.rst:391 -msgid "``{contactfield=state}``" -msgstr "``{contactfield=state}``" - -#: ../configuration/variables.rst:68 ../configuration/variables.rst:396 -msgid "Twitter" -msgstr "Twitter" - -#: ../configuration/variables.rst:69 ../configuration/variables.rst:397 -msgid "``{contactfield=twitter}``" -msgstr "``{contactfield=twitter}``" - -#: ../configuration/variables.rst:70 ../configuration/variables.rst:200 -#: ../configuration/variables.rst:261 ../configuration/variables.rst:404 -msgid "Title" -msgstr "Title" - -#: ../configuration/variables.rst:71 ../configuration/variables.rst:405 -msgid "``{contactfield=title}``" -msgstr "``{contactfield=title}``" - -#: ../configuration/variables.rst:72 ../configuration/variables.rst:412 -msgid "Website" -msgstr "Website" - -#: ../configuration/variables.rst:73 ../configuration/variables.rst:413 -msgid "``{contactfield=website}``" -msgstr "``{contactfield=website}``" - -#: ../configuration/variables.rst:74 ../configuration/variables.rst:420 -msgid "Zip Code" -msgstr "Postcode" - -#: ../configuration/variables.rst:75 ../configuration/variables.rst:421 -msgid "``{contactfield=zipcode}``" -msgstr "``{contactfield=zipcode}``" - -#: ../configuration/variables.rst:78 -msgid "Contact Owner fields" -msgstr "Contact Owner fields" - -#: ../configuration/variables.rst:88 -msgid "``{ownerfield=firstname}``" -msgstr "``{ownerfield=firstname}``" - -#: ../configuration/variables.rst:90 -msgid "``{ownerfield=lastname}``" -msgstr "``{ownerfield=lastname}``" - -#: ../configuration/variables.rst:92 -msgid "``{ownerfield=email}``" -msgstr "``{ownerfield=email}``" - -#: ../configuration/variables.rst:94 -msgid "``{ownerfield=position}``" -msgstr "``{ownerfield=position}``" - -#: ../configuration/variables.rst:95 ../configuration/variables.rst:173 -#: ../configuration/variables.rst:386 -msgid "Signature" -msgstr "Signature" - -#: ../configuration/variables.rst:96 -msgid "``{ownerfield=signature}``" -msgstr "``{ownerfield=signature}``" - -#: ../configuration/variables.rst:99 -msgid "Company Contact fields" -msgstr "Company Contact fields" - -#: ../configuration/variables.rst:101 -msgid "" -"See :doc:`Companies` for more information." -msgstr "" -"See :doc:`Companies` for more information." - -#: ../configuration/variables.rst:109 ../configuration/variables.rst:300 -msgid "Address Line 1 (Company)" -msgstr "Address Line 1 (Company)" - -#: ../configuration/variables.rst:110 -msgid "``{contactfield=companyaddress1}``" -msgstr "``{contactfield=companyaddress1}``" - -#: ../configuration/variables.rst:111 ../configuration/variables.rst:304 -msgid "Address Line 2 (Company)" -msgstr "Address Line 2 (Company)" - -#: ../configuration/variables.rst:112 ../configuration/variables.rst:305 -msgid "``{contactfield=companyaddress2}``" -msgstr "``{contactfield=companyaddress2}``" - -#: ../configuration/variables.rst:113 ../configuration/variables.rst:306 -msgid "Annual Revenue (Company)" -msgstr "Annual Revenue (Company)" - -#: ../configuration/variables.rst:114 ../configuration/variables.rst:307 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "``{contactfield=companyannual_revenue}``" - -#: ../configuration/variables.rst:115 ../configuration/variables.rst:320 -msgid "City (Company)" -msgstr "City (Company)" - -#: ../configuration/variables.rst:116 ../configuration/variables.rst:321 -msgid "``{contactfield=companycity}``" -msgstr "``{contactfield=companycity}``" - -#: ../configuration/variables.rst:117 ../configuration/variables.rst:324 -msgid "Country (Company)" -msgstr "Country (Company)" - -#: ../configuration/variables.rst:118 ../configuration/variables.rst:325 -msgid "``{contactfield=companycountry}``" -msgstr "``{contactfield=companycountry}``" - -#: ../configuration/variables.rst:119 ../configuration/variables.rst:330 -msgid "Description (Company)" -msgstr "Description (Company)" - -#: ../configuration/variables.rst:120 ../configuration/variables.rst:331 -msgid "``{contactfield=companydescription}``" -msgstr "``{contactfield=companydescription}``" - -#: ../configuration/variables.rst:121 ../configuration/variables.rst:336 -msgid "Email (Company)" -msgstr "Email (Company)" - -#: ../configuration/variables.rst:122 ../configuration/variables.rst:337 -msgid "``{contactfield=companyemail}``" -msgstr "``{contactfield=companyemail}``" - -#: ../configuration/variables.rst:123 ../configuration/variables.rst:346 -msgid "Fax (Company)" -msgstr "Fax (Company)" - -#: ../configuration/variables.rst:124 ../configuration/variables.rst:347 -msgid "``{contactfield=companyfax}``" -msgstr "``{contactfield=companyfax}``" - -#: ../configuration/variables.rst:125 -msgid "Industry (Company)" -msgstr "Industry (Company)" - -#: ../configuration/variables.rst:126 -msgid "``{contactfield=companyindustry}``" -msgstr "``{contactfield=companyindustry}``" - -#: ../configuration/variables.rst:127 -msgid "Name" -msgstr "Name" - -#: ../configuration/variables.rst:128 ../configuration/variables.rst:373 -msgid "``{contactfield=companyname}``" -msgstr "``{contactfield=companyname}``" - -#: ../configuration/variables.rst:129 ../configuration/variables.rst:374 -msgid "Number of Employees (Company)" -msgstr "Number of Employees (Company)" - -#: ../configuration/variables.rst:130 ../configuration/variables.rst:375 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "``{contactfield=companynumber_of_employees}``" - -#: ../configuration/variables.rst:131 ../configuration/variables.rst:378 -msgid "Phone Number (Company)" -msgstr "Phone Number (Company)" - -#: ../configuration/variables.rst:132 ../configuration/variables.rst:379 -msgid "``{contactfield=companyphone}``" -msgstr "``{contactfield=companyphone}``" - -#: ../configuration/variables.rst:133 ../configuration/variables.rst:392 -msgid "State (Company)" -msgstr "State (Company)" - -#: ../configuration/variables.rst:134 ../configuration/variables.rst:393 -msgid "``{contactfield=companystate}``" -msgstr "``{contactfield=companystate}``" - -#: ../configuration/variables.rst:135 ../configuration/variables.rst:414 -msgid "Website (Company)" -msgstr "Website (Company)" - -#: ../configuration/variables.rst:136 ../configuration/variables.rst:415 -msgid "``{contactfield=companywebsite}``" -msgstr "``{contactfield=companywebsite}``" - -#: ../configuration/variables.rst:137 ../configuration/variables.rst:422 -msgid "Zip Code (Company)" -msgstr "Postcode (Company)" - -#: ../configuration/variables.rst:138 ../configuration/variables.rst:423 -msgid "``{contactfield=companyzipcode}``" -msgstr "``{contactfield=companyzipcode}``" - -#: ../configuration/variables.rst:141 -msgid "Mautic Component tokens" -msgstr "Mautic Component tokens" - -#: ../configuration/variables.rst:143 -msgid "" -"See :doc:`Components` and :doc:`Manage " -"Pages` for more information." -msgstr "" -"See :doc:`Components` and :doc:`Manage " -"Pages` for more information." - -#: ../configuration/variables.rst:152 ../configuration/variables.rst:308 -msgid "Asset link for Asset id#" -msgstr "Asset link for Asset id#" - -#: ../configuration/variables.rst:153 ../configuration/variables.rst:309 -msgid "``{assetlink=25}``" -msgstr "``{assetlink=25}``" - -#: ../configuration/variables.rst:154 ../configuration/variables.rst:342 -msgid "Focus Item id#" -msgstr "Focus Item id#" - -#: ../configuration/variables.rst:155 ../configuration/variables.rst:343 -msgid "``{focus=4}``" -msgstr "``{focus=4}``" - -#: ../configuration/variables.rst:156 ../configuration/variables.rst:344 -msgid "Form id#" -msgstr "Form id#" - -#: ../configuration/variables.rst:157 ../configuration/variables.rst:345 -msgid "``{form=83}``" -msgstr "``{form=83}``" - -#: ../configuration/variables.rst:158 ../configuration/variables.rst:358 -msgid "Landing Page link for page id#" -msgstr "Landing Page link for page id#" - -#: ../configuration/variables.rst:159 ../configuration/variables.rst:359 -msgid "``{pagelink=17}``" -msgstr "``{pagelink=17}``" - -#: ../configuration/variables.rst:162 -msgid "Email specific tokens" -msgstr "Email specific tokens" - -#: ../configuration/variables.rst:164 -msgid "See :doc:`Manage Emails` for more information." -msgstr "See :doc:`Manage Emails` for more information." - -#: ../configuration/variables.rst:174 ../configuration/variables.rst:387 -msgid "``{signature}``" -msgstr "``{signature}``" - -#: ../configuration/variables.rst:175 ../configuration/variables.rst:394 -msgid "Subject" -msgstr "Subject" - -#: ../configuration/variables.rst:176 ../configuration/variables.rst:395 -msgid "``{subject}``" -msgstr "``{subject}``" - -#: ../configuration/variables.rst:177 ../configuration/variables.rst:271 -msgid "Tracking pixel" -msgstr "Tracking pixel" - -#: ../configuration/variables.rst:178 ../configuration/variables.rst:272 -msgid "``{tracking_pixel}``" -msgstr "``{tracking_pixel}``" - -#: ../configuration/variables.rst:179 ../configuration/variables.rst:408 -msgid "Unsubscribe Text" -msgstr "Unsubscribe Text" - -#: ../configuration/variables.rst:180 ../configuration/variables.rst:409 -msgid "``{unsubscribe_text}``" -msgstr "``{unsubscribe_text}``" - -#: ../configuration/variables.rst:181 ../configuration/variables.rst:416 -msgid "Web View Text" -msgstr "Web View Text" - -#: ../configuration/variables.rst:182 ../configuration/variables.rst:417 -msgid "``{webview_text}``" -msgstr "``{webview_text}``" - -#: ../configuration/variables.rst:183 ../configuration/variables.rst:418 -msgid "Web View URL" -msgstr "Web View URL" - -#: ../configuration/variables.rst:184 -msgid "``{webview_url}``" -msgstr "``{webview_url}``" - -#: ../configuration/variables.rst:187 -msgid "Landing Page tokens" -msgstr "Landing Page tokens" - -#: ../configuration/variables.rst:189 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "See :doc:`/components/landing_pages` for more information." - -#: ../configuration/variables.rst:198 -msgid "Meta Description" -msgstr "Meta Description" - -#: ../configuration/variables.rst:199 ../configuration/variables.rst:369 -msgid "``{pagemetadescription}``" -msgstr "``{pagemetadescription}``" - -#: ../configuration/variables.rst:201 ../configuration/variables.rst:407 -msgid "``{pagetitle}``" -msgstr "``{pagetitle}``" - -#: ../configuration/variables.rst:202 ../configuration/variables.rst:360 -msgid "Language bar" -msgstr "Language bar" - -#: ../configuration/variables.rst:203 ../configuration/variables.rst:361 -msgid "``{langbar}``" -msgstr "``{langbar}``" - -#: ../configuration/variables.rst:204 ../configuration/variables.rst:400 -msgid "Share Buttons" -msgstr "Share Buttons" - -#: ../configuration/variables.rst:205 ../configuration/variables.rst:401 -msgid "``{sharebuttons}``" -msgstr "``{sharebuttons}``" - -#: ../configuration/variables.rst:206 ../configuration/variables.rst:402 -msgid "Success Message" -msgstr "Success Message" - -#: ../configuration/variables.rst:207 ../configuration/variables.rst:403 -msgid "``{successmessage}``" -msgstr "``{successmessage}``" - -#: ../configuration/variables.rst:210 -msgid "Preference Center Landing Page tokens" -msgstr "Preference Center Landing Page tokens" - -#: ../configuration/variables.rst:212 -msgid "" -"See :doc:`customizing preference center` for " -"more information." -msgstr "" -"See :doc:`customizing preference center` for " -"more information." - -#: ../configuration/variables.rst:221 -msgid "Lead Identifier" -msgstr "Lead Identifier" - -#: ../configuration/variables.rst:222 ../configuration/variables.rst:365 -msgid "``{leadidentifier}``" -msgstr "``{leadidentifier}``" - -#: ../configuration/variables.rst:223 -msgid "Category List" -msgstr "Category List" - -#: ../configuration/variables.rst:224 ../configuration/variables.rst:315 -msgid "``{categorylist}``" -msgstr "``{categorylist}``" - -#: ../configuration/variables.rst:225 -msgid "Segment List" -msgstr "Segment List" - -#: ../configuration/variables.rst:226 ../configuration/variables.rst:385 -msgid "``{segmentlist}``" -msgstr "``{segmentlist}``" - -#: ../configuration/variables.rst:227 -msgid "Preferred Channel" -msgstr "Preferred Channel" - -#: ../configuration/variables.rst:228 ../configuration/variables.rst:399 -msgid "``{preferredchannel}``" -msgstr "``{preferredchannel}``" - -#: ../configuration/variables.rst:229 -msgid "Channel Frequency" -msgstr "Channel Frequency" - -#: ../configuration/variables.rst:230 ../configuration/variables.rst:317 -msgid "``{channelfrequency}``" -msgstr "``{channelfrequency}``" - -#: ../configuration/variables.rst:231 -msgid "Save Preferences" -msgstr "Save Preferences" - -#: ../configuration/variables.rst:232 ../configuration/variables.rst:383 -msgid "``{saveprefsbutton}``" -msgstr "``{saveprefsbutton}``" - -#: ../configuration/variables.rst:235 -msgid "Dynamic Web Content tokens" -msgstr "Dynamic Web Content tokens" - -#: ../configuration/variables.rst:244 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "[Dynamic Content 1] | for example User-defined variable name" - -#: ../configuration/variables.rst:245 ../configuration/variables.rst:333 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "``{dynamiccontent=\"Dynamic Content 1\"}``" - -#: ../configuration/variables.rst:248 -msgid "Contact Monitoring" -msgstr "Contact Monitoring" - -#: ../configuration/variables.rst:250 -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "See :ref:`Contact Monitoring` for more information." - -#: ../configuration/variables.rst:259 -msgid "Language" -msgstr "Language" - -#: ../configuration/variables.rst:260 -msgid "``{language}``" -msgstr "``{language}``" - -#: ../configuration/variables.rst:262 -msgid "``{title}``" -msgstr "``{title}``" - -#: ../configuration/variables.rst:263 -msgid "Landing Page Title" -msgstr "Landing Page Title" - -#: ../configuration/variables.rst:264 -msgid "``{page_title}``" -msgstr "``{page_title}``" - -#: ../configuration/variables.rst:265 -msgid "URL" -msgstr "URL" - -#: ../configuration/variables.rst:266 -msgid "``{url}``" -msgstr "``{url}``" - -#: ../configuration/variables.rst:267 -msgid "Landing Page URL" -msgstr "Landing Page URL" - -#: ../configuration/variables.rst:268 -msgid "``{page_url}``" -msgstr "``{page_url}``" - -#: ../configuration/variables.rst:269 -msgid "Referrer" -msgstr "Referrer" - -#: ../configuration/variables.rst:270 -msgid "``{referrer}``" -msgstr "``{referrer}``" - -#: ../configuration/variables.rst:273 -msgid "UTM Campaign" -msgstr "UTM Campaign" - -#: ../configuration/variables.rst:274 -msgid "``{utm_campaign}``" -msgstr "``{utm_campaign}``" - -#: ../configuration/variables.rst:275 -msgid "UTM Content" -msgstr "UTM Content" - -#: ../configuration/variables.rst:276 -msgid "``{utm_content}``" -msgstr "``{utm_content}``" - -#: ../configuration/variables.rst:277 -msgid "UTM Medium" -msgstr "UTM Medium" - -#: ../configuration/variables.rst:278 -msgid "``{utm_medium}``" -msgstr "``{utm_medium}``" - -#: ../configuration/variables.rst:279 -msgid "UTM Source" -msgstr "UTM Source" - -#: ../configuration/variables.rst:280 -msgid "``{utm_source}``" -msgstr "``{utm_source}``" - -#: ../configuration/variables.rst:281 -msgid "UTM Term" -msgstr "UTM Term" - -#: ../configuration/variables.rst:282 -msgid "``{utm_term}``" -msgstr "``{utm_term}``" - -#: ../configuration/variables.rst:285 -msgid "Search filters" -msgstr "Search filters" - -#: ../configuration/variables.rst:287 -msgid "See the :ref:`Search` page for more information." -msgstr "See the :ref:`Search` page for more information." - -#: ../configuration/variables.rst:290 -msgid "Alphabetical list" -msgstr "Alphabetical list" - -#: ../configuration/variables.rst:314 -msgid "Category List (Preference Center)" -msgstr "Category List (Preference Center)" - -#: ../configuration/variables.rst:316 -msgid "Channel Frequency (Preference Center)" -msgstr "Channel Frequency (Preference Center)" - -#: ../configuration/variables.rst:332 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "[Dynamic Content 1]for example: user-defined variable name" - -#: ../configuration/variables.rst:364 -msgid "Contact Identifier (Preference Center)" -msgstr "Contact Identifier (Preference Center)" - -#: ../configuration/variables.rst:368 -msgid "Meta Description (Landing Page)" -msgstr "Meta Description (Landing Page)" - -#: ../configuration/variables.rst:372 -msgid "Name (Company)" -msgstr "Name (Company)" - -#: ../configuration/variables.rst:382 -msgid "Save Preferences (Preference Center)" -msgstr "Save Preferences (Preference Center)" - -#: ../configuration/variables.rst:384 -msgid "Segment List (Preference Center)" -msgstr "Segment List (Preference Center)" - -#: ../configuration/variables.rst:398 -msgid "Preferred Channel (Preference Center)" -msgstr "Preferred Channel (Preference Center)" - -#: ../configuration/variables.rst:406 -msgid "Title (Landing Page)" -msgstr "Title (Landing Page)" - -#: ../configuration/variables.rst:410 -msgid "Unsubscribe URL" -msgstr "Unsubscribe URL" - -#: ../configuration/variables.rst:411 -msgid "``{unsubscribe_url}``" -msgstr "``{unsubscribe_url}``" - -#: ../configuration/variables.rst:419 -msgid "``{{webview_url}``" -msgstr "``{{webview_url}``" diff --git a/docs/locale/en_GB/LC_MESSAGES/configuration/settings.po b/docs/locale/en_GB/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index d3d33c27..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/en_GB/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 1a72e7b3..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/en_GB/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 2674b5ae..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/contributing/contributing.po b/docs/locale/en_GB/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 4110ca10..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/en_GB/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 5507c3ef..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/en_GB/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 13f3b2ff..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/getting_started.po b/docs/locale/en_GB/LC_MESSAGES/getting_started.po deleted file mode 100644 index f7a3277c..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/getting_started.po +++ /dev/null @@ -1,1600 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Ruth Cheesley , 2022 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: 2022-11-14 11:43+0000\n" -"Last-Translator: Ruth Cheesley , 2022\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../getting_started/how_to_install_mautic.rst:2 -msgid "Installation" -msgstr "Installation" - -#: ../getting_started/how_to_install_mautic.rst:4 -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." - -#: ../getting_started/how_to_install_mautic.rst:6 -msgid "" -"Installing :ref:`using the production package`, with either the :ref:`web-based installer` or :ref:`from the command line`." -msgstr "" -"Installing :ref:`using the production package`, with either the :ref:`web-based installer` or :ref:`from the command line`." - -#: ../getting_started/how_to_install_mautic.rst:8 -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," - -#: ../getting_started/how_to_install_mautic.rst:10 -msgid ":ref:`Installing with Composer`" -msgstr ":ref:`Installing with Composer`" - -#: ../getting_started/how_to_install_mautic.rst:13 -msgid "Using the production package" -msgstr "Using the production package" - -#: ../getting_started/how_to_install_mautic.rst:15 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using the command-line " -"installation. The Mautic production package also requires access to a " -"database server." -msgstr "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using the command-line " -"installation. The Mautic production package also requires access to a " -"database server." - -#: ../getting_started/how_to_install_mautic.rst:17 -msgid "The Mautic installation is a three-step process:" -msgstr "The Mautic installation is a three-step process:" - -#: ../getting_started/how_to_install_mautic.rst:19 -msgid "Integrate the database server with the Mautic server." -msgstr "Integrate the database server with the Mautic server." - -#: ../getting_started/how_to_install_mautic.rst:21 -msgid "Create an administrator account to access the Mautic server." -msgstr "Create an administrator account to access the Mautic server." - -#: ../getting_started/how_to_install_mautic.rst:23 -msgid "Set up the Email server for Email marketing automation." -msgstr "Set up the Email server for Email marketing automation." - -#: ../getting_started/how_to_install_mautic.rst:26 -msgid "Preparing for installation" -msgstr "Preparing for installation" - -#: ../getting_started/how_to_install_mautic.rst:28 -msgid "Before installing a package, ensure that:" -msgstr "Before installing a package, ensure that:" - -#: ../getting_started/how_to_install_mautic.rst:30 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." - -#: ../getting_started/how_to_install_mautic.rst:32 -msgid "Your server directory is writable by the Mautic web server." -msgstr "Your server directory is writable by the Mautic web server." - -#: ../getting_started/how_to_install_mautic.rst:34 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." - -#: ../getting_started/how_to_install_mautic.rst:36 -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." - -#: ../getting_started/how_to_install_mautic.rst:38 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "PHP's `max_execution_time` is at least 240 seconds." - -#: ../getting_started/how_to_install_mautic.rst:41 -msgid "Downloading a production package" -msgstr "Downloading a production package" - -#: ../getting_started/how_to_install_mautic.rst:43 -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." - -#: ../getting_started/how_to_install_mautic.rst:45 -msgid "" -"For more information about the available Mautic packages, visit the " -":xref:`Mautic Releases` Landing Page." -msgstr "" -"For more information about the available Mautic packages, visit the " -":xref:`Mautic Releases` Landing Page." - -#: ../getting_started/how_to_install_mautic.rst:48 -msgid "Uploading the production package" -msgstr "Uploading the production package" - -#: ../getting_started/how_to_install_mautic.rst:50 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." - -#: ../getting_started/how_to_install_mautic.rst:52 -msgid "" -"Your web server must have the permissions to access the unzipped files." -msgstr "" -"Your web server must have the permissions to access the unzipped files." - -#: ../getting_started/how_to_install_mautic.rst:55 -msgid "Using the web-based installer" -msgstr "Using the web-based installer" - -#: ../getting_started/how_to_install_mautic.rst:57 -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." - -#: ../getting_started/how_to_install_mautic.rst:60 -msgid "Conducting environment checks" -msgstr "Conducting environment checks" - -#: ../getting_started/how_to_install_mautic.rst:62 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." - -#: ../getting_started/how_to_install_mautic.rst:64 -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." - -#: ../getting_started/how_to_install_mautic.rstNone -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" - -#: ../getting_started/how_to_install_mautic.rst:70 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." - -#: ../getting_started/how_to_install_mautic.rst:73 -msgid "Integrating the database" -msgstr "Integrating the database" - -#: ../getting_started/how_to_install_mautic.rst:75 -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "Mautic assumes that the database is on the same server as Mautic." - -#: ../getting_started/how_to_install_mautic.rst:77 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" - -#: ../getting_started/how_to_install_mautic.rst:79 -msgid "Select **Database Driver**." -msgstr "Select **Database Driver**." - -#: ../getting_started/how_to_install_mautic.rst:81 -msgid "Enter **Database Host**." -msgstr "Enter **Database Host**." - -#: ../getting_started/how_to_install_mautic.rst:83 -msgid "Enter **Database Name**." -msgstr "Enter **Database Name**." - -#: ../getting_started/how_to_install_mautic.rst:85 -msgid "Enter **Database Username**." -msgstr "Enter **Database Username**." - -#: ../getting_started/how_to_install_mautic.rst:87 -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." - -#: ../getting_started/how_to_install_mautic.rst:89 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." - -#: ../getting_started/how_to_install_mautic.rstNone -msgid "Screenshot of database configuration screen" -msgstr "Screenshot of database configuration screen" - -#: ../getting_started/how_to_install_mautic.rst:95 -#: ../getting_started/how_to_install_mautic.rst:106 -msgid "Click **Next Step**." -msgstr "Click **Next Step**." - -#: ../getting_started/how_to_install_mautic.rst:98 -msgid "Creating the administrator account" -msgstr "Creating the administrator account" - -#: ../getting_started/how_to_install_mautic.rst:100 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." - -#: ../getting_started/how_to_install_mautic.rstNone -msgid "Screenshot showing the create User screen" -msgstr "Screenshot showing the create User screen" - -#: ../getting_started/how_to_install_mautic.rst:111 -msgid "Configuring Email settings" -msgstr "Configuring Email settings" - -#: ../getting_started/how_to_install_mautic.rst:115 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." - -#: ../getting_started/how_to_install_mautic.rstNone -msgid "Screenshot showing the Email configuration screen" -msgstr "Screenshot showing the Email configuration screen" - -#: ../getting_started/how_to_install_mautic.rst:121 -msgid "For configuring your Email sender settings:" -msgstr "For configuring your Email sender settings:" - -#: ../getting_started/how_to_install_mautic.rst:123 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." - -#: ../getting_started/how_to_install_mautic.rst:125 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." - -#: ../getting_started/how_to_install_mautic.rst:127 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." - -#: ../getting_started/how_to_install_mautic.rst:129 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "Enter **Server** and **Port** for your Email provider." - -#: ../getting_started/how_to_install_mautic.rst:131 -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" -"Select **Encryption** and **Authentication mode** for your Email provider." - -#: ../getting_started/how_to_install_mautic.rst:133 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "Click **Next Step** to log into the Mautic server." - -#: ../getting_started/how_to_install_mautic.rst:136 -msgid "Logging into Mautic" -msgstr "Logging into Mautic" - -#: ../getting_started/how_to_install_mautic.rst:138 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." - -#: ../getting_started/how_to_install_mautic.rstNone -msgid "Screenshot of Mautic login screen" -msgstr "Screenshot of Mautic login screen" - -#: ../getting_started/how_to_install_mautic.rst:144 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "Click **login** to continue working on your Mautic instance." - -#: ../getting_started/how_to_install_mautic.rst:147 -msgid "Installing with command line" -msgstr "Installing with command line" - -#: ../getting_started/how_to_install_mautic.rst:149 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." - -#: ../getting_started/how_to_install_mautic.rst:151 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." - -#: ../getting_started/how_to_install_mautic.rst:181 -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "Use the syntax below within a ``local.php`` file:" - -#: ../getting_started/how_to_install_mautic.rst:210 -msgid "Installing with a local PHP file" -msgstr "Installing with a local PHP file" - -#: ../getting_started/how_to_install_mautic.rst:212 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." - -#: ../getting_started/how_to_install_mautic.rst:214 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "``path/to/php bin/console mautic:install https://m.example.com``" - -#: ../getting_started/how_to_install_mautic.rst:216 -msgid "If desired, you can also add parameters in the install command:" -msgstr "If desired, you can also add parameters in the install command:" - -#: ../getting_started/how_to_install_mautic.rst:226 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." - -#: ../getting_started/how_to_install_mautic.rst:248 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." - -#: ../getting_started/how_to_install_mautic.rst:251 -msgid "Installing from GitHub" -msgstr "Installing from GitHub" - -#: ../getting_started/how_to_install_mautic.rst:253 -msgid "" -"It's essential to have all the files locally - including automated tests - " -"from the GitHub repository when testing Mautic or contributing to it. Many " -"of these files aren't included in the production build process." -msgstr "" -"It's essential to have all the files locally - including automated tests - " -"from the GitHub repository when testing Mautic or contributing to it. Many " -"of these files aren't included in the production build process." - -#: ../getting_started/how_to_install_mautic.rst:256 -msgid "Cloning Mautic from GitHub" -msgstr "Cloning Mautic from GitHub" - -#: ../getting_started/how_to_install_mautic.rst:258 -msgid "Install the :xref:`GitHub CLI` tool." -msgstr "Install the :xref:`GitHub CLI` tool." - -#: ../getting_started/how_to_install_mautic.rst:260 -msgid "" -"Click **Fork** at the top-right corner of the Mautic GitHub repository page " -"to make a personal fork. You can also click to go directly to your fork if " -"you already have one, if you don't then GitHub will offer to create one.." -msgstr "" -"Click **Fork** at the top-right corner of the Mautic GitHub repository page " -"to make a personal fork. You can also click to go directly to your fork if " -"you already have one, if you don't then GitHub will offer to create one.." - -#: ../getting_started/how_to_install_mautic.rst:262 -msgid "" -"After the fork is complete, click the green **Code** button to access the " -"command for cloning the repository." -msgstr "" -"After the fork is complete, click the green **Code** button to access the " -"command for cloning the repository." - -#: ../getting_started/how_to_install_mautic.rst:264 -msgid "" -"Switch to your terminal, and when in the directory where you wish to install" -" Mautic, paste the command using the :xref:`GitHub CLI` tool this is in the " -"format:" -msgstr "" -"Switch to your terminal, and when in the directory where you wish to install" -" Mautic, paste the command using the :xref:`GitHub CLI` tool this is in the " -"format:" - -#: ../getting_started/how_to_install_mautic.rst:272 -msgid "" -"Please always choose to fork into a **personal account** rather than an " -"organization. The latter prevents Mautic's maintainers from working with " -"your Pull Request." -msgstr "" -"Please always choose to fork into a **personal account** rather than an " -"organisation. The latter prevents Mautic's maintainers from working with " -"your Pull Request." - -#: ../getting_started/how_to_install_mautic.rst:275 -msgid "Install Mautic using DDEV" -msgstr "Install Mautic using DDEV" - -#: ../getting_started/how_to_install_mautic.rst:277 -msgid "" -"You can use :xref:`DDEV` which is recommended for testing and development " -"with Mautic. To get started:" -msgstr "" -"You can use :xref:`DDEV` which is recommended for testing and development " -"with Mautic. To get started:" - -#: ../getting_started/how_to_install_mautic.rst:280 -msgid "Install :xref:`DDEV`." -msgstr "Install :xref:`DDEV`." - -#: ../getting_started/how_to_install_mautic.rst:282 -msgid "Install and ensure you have :xref:`Docker` running on your system." -msgstr "Install and ensure you have :xref:`Docker` running on your system." - -#: ../getting_started/how_to_install_mautic.rst:284 -msgid "" -"You can now change into the Mautic directory and kick off the DDEV " -"quickstart using the command:" -msgstr "" -"You can now change into the Mautic directory and kick off the DDEV " -"quickstart using the command:" - -#: ../getting_started/how_to_install_mautic.rst:292 -msgid "For troubleshooting see :xref:`DDEV Troubleshooting`." -msgstr "For troubleshooting see :xref:`DDEV Troubleshooting`." - -#: ../getting_started/how_to_install_mautic.rst:294 -msgid "See Mautic's :xref:`Handbook` for more detailed instructions." -msgstr "See Mautic's :xref:`Handbook` for more detailed instructions." - -#: ../getting_started/how_to_install_mautic.rst:298 -msgid "" -"This spins up a DDEV instance (which includes Mailhog, PHPMyAdmin, and Redis" -" Commander) - by default at ``https://mautic.ddev.site`` - and also gives " -"the option to set up Mautic ready for you to use. .. vale on" -msgstr "" -"This spins up a DDEV instance (which includes Mailhog, PHPMyAdmin, and Redis" -" Commander) - by default at ``https://mautic.ddev.site`` - and also gives " -"the option to set up Mautic ready for you to use. .. vale on" - -#: ../getting_started/how_to_install_mautic.rst:301 -msgid "" -"This runs through the Composer install process, and installs Mautic at the " -"command line with a default username of ``admin`` and password of " -"``mautic``." -msgstr "" -"This runs through the Composer install process, and installs Mautic at the " -"command line with a default username of ``admin`` and password of " -"``mautic``." - -#: ../getting_started/how_to_install_mautic.rst:304 -msgid "Installing with Composer" -msgstr "Installing with Composer" - -#: ../getting_started/how_to_install_mautic.rst:306 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." - -#: ../getting_started/how_to_install_mautic.rst:308 -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." - -#: ../getting_started/how_to_install_mautic.rst:310 -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." - -#: ../getting_started/how_to_install_mautic.rst:315 -msgid "Using the Recommended Project" -msgstr "Using the Recommended Project" - -#: ../getting_started/how_to_install_mautic.rst:319 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." - -#: ../getting_started/how_to_install_mautic.rst:322 -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." - -#: ../getting_started/how_to_install_mautic.rst:324 -msgid "The basic command to use the Recommended Project is:" -msgstr "The basic command to use the Recommended Project is:" - -#: ../getting_started/how_to_install_mautic.rst:330 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" -"With Composer you can add new dependencies to install along with Mautic:" - -#: ../getting_started/how_to_install_mautic.rst:337 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." - -#: ../getting_started/how_to_install_mautic.rst:342 -msgid "What does the Recommended Project template actually do?" -msgstr "What does the Recommended Project template actually do?" - -#: ../getting_started/how_to_install_mautic.rst:346 -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "When installing the given ``composer.json`` the following occurs:" - -#: ../getting_started/how_to_install_mautic.rst:348 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "Install Mautic in the ``docroot`` directory." - -#: ../getting_started/how_to_install_mautic.rst:349 -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." - -#: ../getting_started/how_to_install_mautic.rst:350 -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." - -#: ../getting_started/how_to_install_mautic.rst:351 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." - -#: ../getting_started/how_to_install_mautic.rst:352 -msgid "Creates ``docroot/media`` directory." -msgstr "Creates ``docroot/media`` directory." - -#: ../getting_started/how_to_install_mautic.rst:353 -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." - -#: ../getting_started/how_to_install_mautic.rst:358 -msgid "Updating Mautic Core" -msgstr "Updating Mautic Core" - -#: ../getting_started/how_to_install_mautic.rst:362 -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." - -#: ../getting_started/how_to_install_mautic.rst:364 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." - -#: ../getting_started/how_to_install_mautic.rst:366 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." - -#: ../getting_started/how_to_install_mautic.rst:368 -msgid "Follow the steps below to update your core files." -msgstr "Follow the steps below to update your core files." - -#: ../getting_started/how_to_install_mautic.rst:370 -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." - -#: ../getting_started/how_to_install_mautic.rst:372 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." - -#: ../getting_started/how_to_install_mautic.rst:374 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." - -#: ../getting_started/how_to_install_mautic.rst:376 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." - -#: ../getting_started/how_to_install_mautic.rst:378 -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" -"5 Run the following commands to update your database with any changes from " -"the release:" - -#: ../getting_started/how_to_install_mautic.rst:391 -msgid "Composer FAQs" -msgstr "Composer FAQs" - -#: ../getting_started/how_to_install_mautic.rst:396 -msgid "Should you commit downloaded third party Plugins?" -msgstr "Should you commit downloaded third party Plugins?" - -#: ../getting_started/how_to_install_mautic.rst:398 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." - -#: ../getting_started/how_to_install_mautic.rst:401 -msgid "Should you commit the scaffolding files?" -msgstr "Should you commit the scaffolding files?" - -#: ../getting_started/how_to_install_mautic.rst:403 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." - -#: ../getting_started/how_to_install_mautic.rst:406 -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." - -#: ../getting_started/how_to_install_mautic.rst:410 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" - -#: ../getting_started/how_to_install_mautic.rst:428 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "How can you apply patches to downloaded Plugins?" - -#: ../getting_started/how_to_install_mautic.rst:430 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." - -#: ../getting_started/how_to_install_mautic.rst:432 -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" - -#: ../getting_started/how_to_install_mautic.rst:448 -msgid "How can you specify a PHP version?" -msgstr "How can you specify a PHP version?" - -#: ../getting_started/how_to_install_mautic.rst:452 -msgid "" -"This project supports PHP 7.4 as the minimum version currently - review " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" -"This project supports PHP 7.4 as the minimum version currently - review " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." - -#: ../getting_started/how_to_install_mautic.rst:454 -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" - -#: ../getting_started/how_to_install_mautic.rst:467 -msgid "How can you use another folder than ``docroot`` as the root folder?" -msgstr "How can you use another folder than ``docroot`` as the root folder?" - -#: ../getting_started/how_to_install_mautic.rst:469 -msgid "" -"By default the ``composer.json`` file places all Mautic core, Plugin and " -"Theme files in the ``docroot`` folder. It's possible to change this folder " -"to your own needs." -msgstr "" -"By default the ``composer.json`` file places all Mautic core, Plugin and " -"Theme files in the ``docroot`` folder. It's possible to change this folder " -"to your own needs." - -#: ../getting_started/how_to_install_mautic.rst:472 -msgid "In following examples, ``docroot`` moves into ``public``." -msgstr "In following examples, ``docroot`` moves into ``public``." - -#: ../getting_started/how_to_install_mautic.rst:475 -msgid "New installations" -msgstr "New installations" - -#: ../getting_started/how_to_install_mautic.rst:477 -msgid "Run the create-project command without installing:" -msgstr "Run the create-project command without installing:" - -#: ../getting_started/how_to_install_mautic.rst:483 -msgid "" -"Do a find and replace in the ``composer.json`` file to change ``docroot/`` " -"into ``public/``" -msgstr "" -"Do a find and replace in the ``composer.json`` file to change ``docroot/`` " -"into ``public/``" - -#: ../getting_started/how_to_install_mautic.rst:484 -#: ../getting_started/how_to_install_mautic.rst:497 -msgid "" -"Review the changes in the ``composer.json`` file to ensure that there are no" -" unintentional replacements" -msgstr "" -"Review the changes in the ``composer.json`` file to ensure that there are no" -" unintentional replacements" - -#: ../getting_started/how_to_install_mautic.rst:485 -msgid "" -"Run ``composer install`` to install all dependencies in the correct location" -msgstr "" -"Run ``composer install`` to install all dependencies in the correct location" - -#: ../getting_started/how_to_install_mautic.rst:488 -msgid "Existing installations" -msgstr "Existing installations" - -#: ../getting_started/how_to_install_mautic.rst:490 -msgid "Move the ``docroot/`` to ``public/``" -msgstr "Move the ``docroot/`` to ``public/``" - -#: ../getting_started/how_to_install_mautic.rst:496 -msgid "" -"Do a find and replace in the ``composer.json`` file to change ``docroot/`` " -"to ``public/``" -msgstr "" -"Do a find and replace in the ``composer.json`` file to change ``docroot/`` " -"to ``public/``" - -#: ../getting_started/how_to_install_mautic.rst:498 -msgid "" -"Run ``composer update --lock`` to ensure the autoloader is aware of the " -"changed folder" -msgstr "" -"Run ``composer update --lock`` to ensure the autoloader is aware of the " -"changed folder" - -#: ../getting_started/how_to_install_mautic.rst:503 -msgid "Setting up a local testing environment with DDEV" -msgstr "Setting up a local testing environment with DDEV" - -#: ../getting_started/how_to_install_mautic.rst:507 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." - -#: ../getting_started/how_to_install_mautic.rst:509 -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." - -#: ../getting_started/how_to_install_mautic.rst:511 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." - -#: ../getting_started/how_to_update_mautic.rst:4 -msgid "How to update Mautic" -msgstr "How to update Mautic" - -#: ../getting_started/how_to_update_mautic.rst:8 -msgid "There are two ways to update Mautic:" -msgstr "There are two ways to update Mautic:" - -#: ../getting_started/how_to_update_mautic.rst:10 -msgid "Using the Command Line - recommended" -msgstr "Using the Command Line - recommended" - -#: ../getting_started/how_to_update_mautic.rst:11 -msgid "Through the User interface" -msgstr "Through the User interface" - -#: ../getting_started/how_to_update_mautic.rst:13 -msgid "" -"If your instance is in production, has a large number of Contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" -"If your instance is in production, has a large number of Contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." - -#: ../getting_started/how_to_update_mautic.rst:16 -msgid "" -"Updating in the User interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. A failed" -" update or corrupted data can result from this. It's planned to remove this " -"feature in Mautic 5.0, requiring updating at the command line." -msgstr "" -"Updating in the User interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. A failed" -" update or corrupted data can result from this. It's planned to remove this " -"feature in Mautic 5.0, requiring updating at the command line." - -#: ../getting_started/how_to_update_mautic.rst:19 -msgid "Updating at the command line (non-Composer based installations)" -msgstr "Updating at the command line (non-Composer based installations)" - -#: ../getting_started/how_to_update_mautic.rst:21 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." - -#: ../getting_started/how_to_update_mautic.rst:23 -#: ../getting_started/how_to_update_mautic.rst:93 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." - -#: ../getting_started/how_to_update_mautic.rst:26 -msgid "Checking for updates at the command line" -msgstr "Checking for updates at the command line" - -#: ../getting_started/how_to_update_mautic.rst:28 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." - -#: ../getting_started/how_to_update_mautic.rst:30 -msgid "" -"The update feature within the Mautic User interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" -"The update feature within the Mautic User interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." - -#: ../getting_started/how_to_update_mautic.rstNone -msgid "Screenshot showing deprecated update feature warning" -msgstr "Screenshot showing deprecated update feature warning" - -#: ../getting_started/how_to_update_mautic.rst:38 -msgid "" -"Before starting to upgrade, it's highly recommended to take a backup of your" -" instance. If updates are available, you will receive an update notification" -" followed by step-by-step instructions in the command-line interface to " -"complete the process." -msgstr "" -"Before starting to upgrade, it's highly recommended to take a backup of your" -" instance. If updates are available, you will receive an update notification" -" followed by step-by-step instructions in the command-line interface to " -"complete the process." - -#: ../getting_started/how_to_update_mautic.rst:40 -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command:" -msgstr "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command:" - -#: ../getting_started/how_to_update_mautic.rst:48 -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" -"The first step is to find out if there are any updates available using the " -"following command:" - -#: ../getting_started/how_to_update_mautic.rst:54 -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." - -#: ../getting_started/how_to_update_mautic.rst:57 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." - -#: ../getting_started/how_to_update_mautic.rst:59 -msgid "After a system readiness check, you can apply the updates." -msgstr "After a system readiness check, you can apply the updates." - -#: ../getting_started/how_to_update_mautic.rst:62 -msgid "Installing updates at the command line" -msgstr "Installing updates at the command line" - -#: ../getting_started/how_to_update_mautic.rst:64 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" -"If there are updates available, run the following command to apply them:" - -#: ../getting_started/how_to_update_mautic.rst:71 -msgid "" -"This is followed by a prompt to run the command again with this additional " -"argument:" -msgstr "" -"This is followed by a prompt to run the command again with this additional " -"argument:" - -#: ../getting_started/how_to_update_mautic.rst:79 -msgid "Updating in the browser" -msgstr "Updating in the browser" - -#: ../getting_started/how_to_update_mautic.rst:81 -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." - -#: ../getting_started/how_to_update_mautic.rst:85 -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." - -#: ../getting_started/how_to_update_mautic.rst:87 -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." - -#: ../getting_started/how_to_update_mautic.rst:89 -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." - -#: ../getting_started/how_to_update_mautic.rst:91 -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." - -#: ../getting_started/how_to_update_mautic.rst:96 -msgid "Checking for updates in the browser" -msgstr "Checking for updates in the browser" - -#: ../getting_started/how_to_update_mautic.rst:98 -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." - -#: ../getting_started/how_to_update_mautic.rst:100 -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" -"The notification links to an announcement post which explains what the " -"release includes." - -#: ../getting_started/how_to_update_mautic.rst:103 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." - -#: ../getting_started/how_to_update_mautic.rst:105 -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." - -#: ../getting_started/how_to_update_mautic.rst:107 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." - -#: ../getting_started/how_to_update_mautic.rst:110 -msgid "The update wasn't successful" -msgstr "The update wasn't successful" - -#: ../getting_started/how_to_update_mautic.rst:112 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." - -#: ../getting_started/how_to_update_mautic.rst:115 -msgid "Stability levels" -msgstr "Stability levels" - -#: ../getting_started/how_to_update_mautic.rst:117 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." - -#: ../getting_started/how_to_update_mautic.rst:119 -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" - -#: ../getting_started/how_to_update_mautic.rst:121 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." - -#: ../getting_started/how_to_update_mautic.rst:122 -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" -"Always read the release notes before updating to an early access release." - -#: ../getting_started/how_to_update_mautic.rst:123 -msgid "Never enable early access releases for production instances." -msgstr "Never enable early access releases for production instances." - -#: ../getting_started/how_to_update_mautic.rst:126 -msgid "What to do if you need help updating Mautic" -msgstr "What to do if you need help updating Mautic" - -#: ../getting_started/how_to_update_mautic.rst:128 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." - -#: ../getting_started/how_to_update_mautic.rst:130 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." - -#: ../getting_started/how_to_update_mautic.rst:132 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Create your request there first, " -"then drop a link in Slack if you plan to discuss it there." -msgstr "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Create your request there first, " -"then drop a link in Slack if you plan to discuss it there." - -#: ../getting_started/how_to_update_mautic.rst:134 -msgid "" -"In all cases, it's important to provide details about the issue, as well as " -"the steps you have taken to resolve it. At a minimum, include the following:" -msgstr "" -"In all cases, it's important to provide details about the issue, as well as " -"the steps you have taken to resolve it. At a minimum, include the following:" - -#: ../getting_started/how_to_update_mautic.rst:136 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" - -#: ../getting_started/how_to_update_mautic.rst:137 -msgid "Your server's PHP version." -msgstr "Your server's PHP version." - -#: ../getting_started/how_to_update_mautic.rst:138 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" - -#: ../getting_started/how_to_update_mautic.rst:139 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." - -#: ../getting_started/how_to_update_mautic.rst:141 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." - -#: ../getting_started/how_to_update_mautic.rst:143 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." - -#: ../getting_started/switching_composer.rst:4 -msgid "How to switch to Composer" -msgstr "How to switch to Composer" - -#: ../getting_started/switching_composer.rst:8 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption." -msgstr "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption." - -#: ../getting_started/switching_composer.rst:11 -msgid "" -"In addition, Mautic recently introduced the :ref:`Mautic Marketplace` which " -"isn't compatible with this installation method." -msgstr "" -"In addition, Mautic recently introduced the :ref:`Mautic Marketplace` which " -"isn't compatible with this installation method." - -#: ../getting_started/switching_composer.rst:13 -msgid "" -"As a result of the reasons mentioned above, Composer becomes the default " -"method for installing and updating Mautic starting with the release of " -"Mautic 5. Read more in the :xref:`composer blog post`." -msgstr "" -"As a result of the reasons mentioned above, Composer becomes the default " -"method for installing and updating Mautic starting with the release of " -"Mautic 5. Read more in the :xref:`composer blog post`." - -#: ../getting_started/switching_composer.rst:16 -msgid "Switching to a Composer-based installation" -msgstr "Switching to a Composer-based installation" - -#: ../getting_started/switching_composer.rst:18 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" -"Before starting, it's good to understand that there's two aspects to Mautic:" - -#: ../getting_started/switching_composer.rst:20 -msgid "The database - This is where Mautic stores your Contact data." -msgstr "The database - This is where Mautic stores your Contact data." - -#: ../getting_started/switching_composer.rst:22 -msgid "The codebase - This is where Mautic interacts with the database." -msgstr "The codebase - This is where Mautic interacts with the database." - -#: ../getting_started/switching_composer.rst:24 -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" - -#: ../getting_started/switching_composer.rst:26 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." - -#: ../getting_started/switching_composer.rst:28 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" -"Here's the steps to follow to switch to a Composer-based installation:" - -#: ../getting_started/switching_composer.rst:30 -msgid "Go to ``/var/www``" -msgstr "Go to ``/var/www``" - -#: ../getting_started/switching_composer.rst:32 -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" - -#: ../getting_started/switching_composer.rst:34 -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" - -#: ../getting_started/switching_composer.rst:36 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" - -#: ../getting_started/switching_composer.rst:38 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "The entire ``plugins`` directory - move to ``docroot/plugins``." - -#: ../getting_started/switching_composer.rst:40 -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively." -msgstr "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively." - -#: ../getting_started/switching_composer.rst:42 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" - -#: ../getting_started/switching_composer.rst:44 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "Any custom Themes from ``themes`` - move to ``/docroot/themes``" - -#: ../getting_started/switching_composer.rst:46 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" -"Any translations from ``translations`` - move to ``/docroot/translations``" - -#: ../getting_started/switching_composer.rst:48 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" - -#: ../getting_started/switching_composer.rst:50 -msgid "" -"Update your web server configuration to point to ``/var/www/html/docroot`` " -"instead of ``/var/www/html``" -msgstr "" -"Update your web server configuration to point to ``/var/www/html/docroot`` " -"instead of ``/var/www/html``" - -#: ../getting_started/switching_composer.rst:52 -msgid "" -"Log in to Mautic, and in your global settings enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" -"Log in to Mautic, and in your global settings enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." - -#: ../getting_started/switching_composer.rstNone -msgid "Screenshot of switch enable Composer" -msgstr "Screenshot of switch enable Composer" - -#: ../getting_started/switching_composer.rst:58 -msgid "" -"You have successfully switched to a Composer-based installation. Test Mautic" -" to see if it works as expected." -msgstr "" -"You have successfully switched to a Composer-based installation. Test Mautic" -" to see if it works as expected." - -#: ../getting_started/switching_composer.rst:63 -msgid "Frequently Asked Questions (FAQs)" -msgstr "Frequently Asked Questions (FAQs)" - -#: ../getting_started/switching_composer.rst:65 -msgid "Q: Is existing data retained?" -msgstr "Q: Is existing data retained?" - -#: ../getting_started/switching_composer.rst:67 -msgid "" -"A: Yes, switching to the Composer-based installation only affects app files." -" It doesn't affect your data in any way." -msgstr "" -"A: Yes, switching to the Composer-based installation only affects app files." -" It doesn't affect your data in any way." - -#: ../getting_started/switching_composer.rst:69 -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" - -#: ../getting_started/switching_composer.rst:71 -msgid "" -"A: It is necessary to have at least Mautic 4.0.0 in order to switch to a " -"Composer-based installation." -msgstr "" -"A: It is necessary to have at least Mautic 4.0.0 in order to switch to a " -"Composer-based installation." diff --git a/docs/locale/en_GB/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/en_GB/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index e9303943..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/en_GB/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 3a68088d..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/en_GB/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 7006a47e..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/index.po b/docs/locale/en_GB/LC_MESSAGES/index.po deleted file mode 100644 index d4a203ba..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/index.po +++ /dev/null @@ -1,182 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Ruth Cheesley , 2022 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: 2022-11-14 11:42+0000\n" -"Last-Translator: Ruth Cheesley , 2022\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../index.rst:24 -msgid "Welcome to Mautic" -msgstr "Welcome to Mautic" - -#: ../index.rst:31 -msgid "Getting Started with Mautic" -msgstr "Getting Started with Mautic" - -#: ../index.rst:40 -msgid "Configuration" -msgstr "Configuration" - -#: ../index.rst:51 -msgid "Authentication" -msgstr "Authentication" - -#: ../index.rst:58 -msgid "Contacts" -msgstr "Contacts" - -#: ../index.rst:69 -msgid "Segments" -msgstr "Segments" - -#: ../index.rst:76 -msgid "Campaigns" -msgstr "Campaigns" - -#: ../index.rst:87 -msgid "Categories" -msgstr "Categories" - -#: ../index.rst:94 -msgid "Channels" -msgstr "Channels" - -#: ../index.rst:108 -msgid "Companies" -msgstr "Companies" - -#: ../index.rst:115 -msgid "Components" -msgstr "Components" - -#: ../index.rst:126 -msgid "Dashboard" -msgstr "Dashboard" - -#: ../index.rst:133 -msgid "Email & Landing Page Builders" -msgstr "Email & Landing Page Builders" - -#: ../index.rst:141 -msgid "Mautic Marketplace" -msgstr "Mautic Marketplace" - -#: ../index.rst:148 -msgid "Plugins" -msgstr "Plugins" - -#: ../index.rst:176 -msgid "Points" -msgstr "Points" - -#: ../index.rst:184 -msgid "Queue" -msgstr "Queue" - -#: ../index.rst:192 -msgid "Reports" -msgstr "Reports" - -#: ../index.rst:199 -msgid "Search" -msgstr "Search" - -#: ../index.rst:206 -msgid "Stages" -msgstr "Stages" - -#: ../index.rst:213 -msgid "Themes" -msgstr "Themes" - -#: ../index.rst:224 -msgid "Translation" -msgstr "Translation" - -#: ../index.rst:231 -msgid "User and Roles" -msgstr "User and Roles" - -#: ../index.rst:2 -msgid "Welcome to the Mautic documentation" -msgstr "Welcome to the Mautic documentation" - -#: ../index.rst:4 -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections." -msgstr "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections." - -#: ../index.rst:6 -msgid "" -"To get started with Mautic, follow the :doc:`Getting started " -"guide`. For next steps, you can " -"learn :doc:`how to update Mautic`." -msgstr "" -"To get started with Mautic, follow the :doc:`Getting started " -"guide`. For next steps, you can " -"learn :doc:`how to update Mautic`." - -#: ../index.rst:9 -msgid "" -"There are different types of documentation available to help you navigate " -"your way through Mautic." -msgstr "" -"There are different types of documentation available to help you navigate " -"your way through Mautic." - -#: ../index.rst:11 -msgid "" -":xref:`End User Documentation` - Describes each aspect of Mautic in detail " -"and explains how to use it.." -msgstr "" -":xref:`End User Documentation` - Describes each aspect of Mautic in detail " -"and explains how to use it.." - -#: ../index.rst:13 -msgid "" -":xref:`Developer Documentation` - Describes details about the Mautic API, " -"Webhooks, Themes and Plugin development." -msgstr "" -":xref:`Developer Documentation` - Describes details about the Mautic API, " -"Webhooks, Themes and Plugin development." - -#: ../index.rst:15 -msgid "" -":xref:`Knowledgebase` - Provides a database of tutorials, FAQs, and how-to " -"articles." -msgstr "" -":xref:`Knowledgebase` - Provides a database of tutorials, FAQs, and how-to " -"articles." - -#: ../index.rst:17 -msgid "" -":xref:`Community Handbook` - Describes how to get involved and contribute to" -" Mautic's documentation development." -msgstr "" -":xref:`Community Handbook` - Describes how to get involved and contribute to" -" Mautic's documentation development." - -#: ../index.rst:21 -msgid "This documentation project is under active development." -msgstr "This documentation project is under active development." diff --git a/docs/locale/en_GB/LC_MESSAGES/marketplace.po b/docs/locale/en_GB/LC_MESSAGES/marketplace.po deleted file mode 100644 index d09bd063..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/marketplace.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Ruth Cheesley , 2022 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: 2022-11-14 11:42+0000\n" -"Last-Translator: Ruth Cheesley , 2022\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../marketplace/marketplace.rst:4 -msgid "Mautic Marketplace" -msgstr "Mautic Marketplace" diff --git a/docs/locale/en_GB/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/en_GB/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 690a960d..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/overview.po b/docs/locale/en_GB/LC_MESSAGES/overview.po deleted file mode 100644 index bc06d8bc..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/overview.po +++ /dev/null @@ -1,296 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Ruth Cheesley , 2022 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: 2022-11-14 11:42+0000\n" -"Last-Translator: Ruth Cheesley , 2022\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../overview/overview.rst:2 -msgid "Mautic overview" -msgstr "Mautic overview" - -#: ../overview/overview.rst:4 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" - -#: ../overview/overview.rst:7 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"Media, and Focus Items." -msgstr "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"Media, and Focus Items." - -#: ../overview/overview.rst:9 -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" -"Segment your Contacts based on business requirements and personalise your " -"marketing strategy for each Segment." - -#: ../overview/overview.rst:10 -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "Create personalised Campaigns to engage with your Contacts." - -#: ../overview/overview.rst:11 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." - -#: ../overview/overview.rst:14 -msgid "How it works" -msgstr "How it works" - -#: ../overview/overview.rst:16 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." - -#: ../overview/overview.rstNone -msgid "Mautic Overview" -msgstr "Mautic Overview" - -#: ../overview/overview.rst:24 -msgid "Contact management" -msgstr "Contact management" - -#: ../overview/overview.rst:26 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." - -#: ../overview/overview.rst:28 -msgid "" -":doc:`/contacts/manage_contacts` - Known or unknown individuals who have " -"visited your websites or interacted with your business in some way. Contacts" -" are the primary factor of a marketing automation platform." -msgstr "" -":doc:`/contacts/manage_contacts` - Known or unknown individuals who have " -"visited your websites or interacted with your business in some way. Contacts" -" are the primary factor of a marketing automation platform." - -#: ../overview/overview.rst:30 -msgid "" -":doc:`/segments/manage_segments` - A group of your Contacts that share " -"certain attributes. For example, you may segment Contacts based on a " -"Contact's location. This may help you easily send out location-based offers " -"or promotions to this specific group of Contacts." -msgstr "" -":doc:`/segments/manage_segments` - A group of your Contacts that share " -"certain attributes. For example, you may segment Contacts based on a " -"Contact's location. This may help you easily send out location-based offers " -"or promotions to this specific group of Contacts." - -#: ../overview/overview.rst:32 -msgid "" -":doc:`/companies/companies_overview` - An assigned group of Contacts based " -"on their Company or Companies." -msgstr "" -":doc:`/companies/companies_overview` - An assigned group of Contacts based " -"on their Company or Companies." - -#: ../overview/overview.rst:36 -msgid "Components" -msgstr "Components" - -#: ../overview/overview.rst:38 -msgid "" -"Create and manage various types of content that you use for your marketing " -"campaigns to engage your Contacts." -msgstr "" -"Create and manage various types of content that you use for your marketing " -"campaigns to engage your Contacts." - -#: ../overview/overview.rst:40 -msgid "" -":doc:`/components/assets` - Valuable items that you provide to your Contacts" -" upon completion of a Form. White papers, a downloadable app/file, documents" -" or videos are some examples of Assets." -msgstr "" -":doc:`/components/assets` - Valuable items that you provide to your Contacts" -" upon completion of a Form. White papers, a downloadable app/file, documents" -" or videos are some examples of Assets." - -#: ../overview/overview.rst:42 -msgid "" -":doc:`/components/forms` - Forms are the primary point of customer " -"engagement. They're used to collect contact information, often in exchange " -"for providing access to an Asset such as a download, an event registration, " -"or an Email newsletter." -msgstr "" -":doc:`/components/forms` - Forms are the primary point of customer " -"engagement. They're used to collect contact information, often in exchange " -"for providing access to an Asset such as a download, an event registration, " -"or an Email newsletter." - -#: ../overview/overview.rst:44 -msgid "" -":doc:`/components/landing_pages` - A powerful feature that not only allows " -"you to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" -":doc:`/components/landing_pages` - A powerful feature that not only allows " -"you to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." - -#: ../overview/overview.rst:46 -msgid "" -":doc:`/components/dynamic_web_content` - A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" -":doc:`/components/dynamic_web_content` - A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." - -#: ../overview/overview.rst:49 -msgid "Campaigns" -msgstr "Campaigns" - -#: ../overview/overview.rst:51 -msgid "" -":doc:`/campaigns/campaigns_overview` - With your Contact information and the" -" Components in place, you can start to create customized marketing " -"activities for your Contacts. You create these marketing activities " -"primarily in Campaigns." -msgstr "" -":doc:`/campaigns/campaigns_overview` - With your Contact information and the" -" Components in place, you can start to create customised marketing " -"activities for your Contacts. You create these marketing activities " -"primarily in Campaigns." - -#: ../overview/overview.rst:54 -msgid "Channels" -msgstr "Channels" - -#: ../overview/overview.rst:56 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." - -#: ../overview/overview.rst:58 -msgid "" -":doc:`/channels/marketing_messages` - A way to personalize communication " -"with your Contacts. With Marketing Messages, Contacts receive your content " -"on a Channel they've set as their preference." -msgstr "" -":doc:`/channels/marketing_messages` - A way to personalise communication " -"with your Contacts. With Marketing Messages, Contacts receive your content " -"on a Channel they've set as their preference." - -#: ../overview/overview.rst:60 -msgid "" -":doc:`/channels/emails` - Use built-in Email templates to send messages to a" -" group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" -":doc:`/channels/emails` - Use built-in Email templates to send messages to a" -" group of your Contacts, or send personalised messages to specific Contacts." - -#: ../overview/overview.rst:62 -msgid "" -":doc:`/channels/focus_items` - A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" -":doc:`/channels/focus_items` - A type of web personalisation that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behaviour. By using Focus Items, you can " -"easily convert visitors into known Contacts." - -#: ../overview/overview.rst:64 -msgid "" -":doc:`/channels/social_monitoring` - Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" -":doc:`/channels/social_monitoring` - Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." - -#: ../overview/overview.rst:67 -msgid "Assess performance" -msgstr "Assess performance" - -#: ../overview/overview.rst:69 -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" -"Analyse trends and assess the performance of your marketing strategy using " -"various tools." - -#: ../overview/overview.rst:71 -msgid "" -":doc:`/dashboard/dashboard` - A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" -":doc:`/dashboard/dashboard` - A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalised dashboard " -"based on the information that you want to track." - -#: ../overview/overview.rst:73 -msgid "" -":doc:`/reports/reports` - A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or Landing Page hits. Reports also let " -"you troubleshoot or workaround areas of improvement to enhance your " -"marketing strategy." -msgstr "" -":doc:`/reports/reports` - A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or Landing Page hits. Reports also let " -"you troubleshoot or workaround areas of improvement to enhance your " -"marketing strategy." - -#: ../overview/overview.rst:75 -msgid "" -":doc:`/points/points` - A score that's an indicator of progress for a " -"Contact or customer. Points are a way for marketers to measure which of " -"their Contacts are the most engaged based on their interactions and " -"behavior." -msgstr "" -":doc:`/points/points` - A score that's an indicator of progress for a " -"Contact or customer. Points are a way for marketers to measure which of " -"their Contacts are the most engaged based on their interactions and " -"behaviour." - -#: ../overview/overview.rst:77 -msgid "" -":doc:`/stages/stages` - A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey." -msgstr "" -":doc:`/stages/stages` - A customisable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey." diff --git a/docs/locale/en_GB/LC_MESSAGES/overview/overview.po b/docs/locale/en_GB/LC_MESSAGES/overview/overview.po deleted file mode 100644 index d8c6cec0..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/plugins.po b/docs/locale/en_GB/LC_MESSAGES/plugins.po deleted file mode 100644 index 87e59e25..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/plugins.po +++ /dev/null @@ -1,263 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Ruth Cheesley , 2022 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: 2022-11-14 11:42+0000\n" -"Last-Translator: Ruth Cheesley , 2022\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../plugins/amazon.rst:4 -msgid "Amazon S3" -msgstr "Amazon S3" - -#: ../plugins/citrix.rst:4 -msgid "Citrix" -msgstr "Citrix" - -#: ../plugins/clearbit.rst:4 -msgid "Clearbit" -msgstr "Clearbit" - -#: ../plugins/connectwise.rst:4 -msgid "ConnectWise" -msgstr "ConnectWise" - -#: ../plugins/fullcontact.rst:4 -msgid "FullContact" -msgstr "FullContact" - -#: ../plugins/gmail.rst:4 -msgid "GMail" -msgstr "GMail" - -#: ../plugins/hubspot.rst:4 -msgid "HubSpot" -msgstr "HubSpot" - -#: ../plugins/icontact.rst:4 -msgid "iContact" -msgstr "iContact" - -#: ../plugins/mailchimp.rst:4 -msgid "MailChimp" -msgstr "MailChimp" - -#: ../plugins/microsoft_dynamics_crm.rst:4 -msgid "Microsoft Dynamics CRM" -msgstr "Microsoft Dynamics CRM" - -#: ../plugins/microsoft_outlook.rst:4 -msgid "Microsoft Outlook" -msgstr "Microsoft Outlook" - -#: ../plugins/pipedrive.rst:4 -msgid "Pipedrive" -msgstr "Pipedrive" - -#: ../plugins/plugin_resources.rst:4 -msgid "Plugin resources" -msgstr "Plugin resources" - -#: ../plugins/salesforce.rst:4 -msgid "Salesforce" -msgstr "Salesforce" - -#: ../plugins/social_login.rst:4 -msgid "Social Login" -msgstr "Social Login" - -#: ../plugins/sugar_crm.rst:4 -msgid "Sugar CRM" -msgstr "Sugar CRM" - -#: ../plugins/tag_manager.rst:4 -msgid "Tag Manager" -msgstr "Tag Manager" - -#: ../plugins/twilio.rst:4 -msgid "Twilio" -msgstr "Twilio" - -#: ../plugins/twilio.rst:7 -msgid "Mautic - Twilio Plugin" -msgstr "Mautic - Twilio Plugin" - -#: ../plugins/twilio.rst:11 -msgid "" -"Before you start to send text messages from your Mautic instance, it needs " -"to connect to the service which can send them." -msgstr "" -"Before you start to send text messages from your Mautic instance, it needs " -"to connect to the service which can send them." - -#: ../plugins/twilio.rst:13 -msgid "The first and default implemented service is :xref:`Twilio`." -msgstr "The first and default implemented service is :xref:`Twilio`." - -#: ../plugins/twilio.rst:15 -msgid "In order to configure the text messages correctly, follow these steps:" -msgstr "" -"In order to configure the text messages correctly, follow these steps:" - -#: ../plugins/twilio.rst:17 -msgid "Create an account at :xref:`Twilio`." -msgstr "Create an account at :xref:`Twilio`." - -#: ../plugins/twilio.rst:19 -msgid "In Mautic, go to *Settings* (cog icon) > *Plugins*." -msgstr "In Mautic, go to *Settings* (cog icon) > *Plugins*." - -#: ../plugins/twilio.rst:21 -msgid "Open *Twilio* Plugin and activate it." -msgstr "Open *Twilio* Plugin and activate it." - -#: ../plugins/twilio.rst:23 -msgid "" -"Copy the *Account Sender ID* from Twilio account and paste it to *Account " -"Sender ID* field in the Twilio Plugin configuration." -msgstr "" -"Copy the *Account Sender ID* from Twilio account and paste it to *Account " -"Sender ID* field in the Twilio Plugin configuration." - -#: ../plugins/twilio.rst:25 -msgid "" -"Unlock and copy the *Auth Token* and paste it to *Auth Token* field in the " -"Twilio Plugin configuration." -msgstr "" -"Unlock and copy the *Auth Token* and paste it to *Auth Token* field in the " -"Twilio Plugin configuration." - -#: ../plugins/twilio.rst:27 -msgid "" -"Go to *Products* > *Phone Numbers* in Twilio, copy the number and paste it " -"to the *Sending Phone Number* field in Mautic." -msgstr "" -"Go to *Products* > *Phone Numbers* in Twilio, copy the number and paste it " -"to the *Sending Phone Number* field in Mautic." - -#: ../plugins/twilio.rst:29 -msgid "" -"Select the *Text Message Enabled*? switch to *Yes* and save the Mautic " -"configuration." -msgstr "" -"Select the *Text Message Enabled*? switch to *Yes* and save the Mautic " -"configuration." - -#: ../plugins/twilio.rst:34 -msgid "Alphanumeric Sender ID" -msgstr "Alphanumeric Sender ID" - -#: ../plugins/twilio.rst:38 -msgid "" -"Alphanumeric Sender ID allows you to send Twilio Programmable SMS messages " -"using a personalized sender name, in supported countries see " -":xref:`International Support for Alphanumeric Sender ID`." -msgstr "" -"Alphanumeric Sender ID allows you to send Twilio Programmable SMS messages " -"using a personalized sender name, in supported countries see " -":xref:`International Support for Alphanumeric Sender ID`." - -#: ../plugins/twilio.rst:40 -msgid "" -"Instead of using an E.164 formatted Twilio Phone number for the \"From\" " -"value, you can use a custom string like your own business' branding." -msgstr "" -"Instead of using an E.164 formatted Twilio Phone number for the \"From\" " -"value, you can use a custom string like your own business' branding." - -#: ../plugins/twilio.rst:44 -msgid "" -"You can't reply directly to messages sent out with an Alphanumeric Sender " -"ID." -msgstr "" -"You can't reply directly to messages sent out with an Alphanumeric Sender " -"ID." - -#: ../plugins/twilio.rst:49 -msgid "Alphanumeric Sender ID requirements" -msgstr "Alphanumeric Sender ID requirements" - -#: ../plugins/twilio.rst:53 -msgid "" -"Alphanumeric Sender ID is automatically supported on all new :xref:`upgraded" -" (paid) Twilio accounts`. It's not supported for Free Trial accounts." -msgstr "" -"Alphanumeric Sender ID is automatically supported on all new :xref:`upgraded" -" (paid) Twilio accounts`. It's not supported for Free Trial accounts." - -#: ../plugins/twilio.rst:55 -msgid "" -"You can verify if your account has Alphanumeric Sender enabled by following " -"these steps:" -msgstr "" -"You can verify if your account has Alphanumeric Sender enabled by following " -"these steps:" - -#: ../plugins/twilio.rst:57 -msgid "Login to your account at :xref:`Twilio`." -msgstr "Login to your account at :xref:`Twilio`." - -#: ../plugins/twilio.rst:59 -msgid "From the left side navigation bar, click Programmable SMS." -msgstr "From the left side navigation bar, click Programmable SMS." - -#: ../plugins/twilio.rst:61 -msgid "Click Settings." -msgstr "Click Settings." - -#: ../plugins/twilio.rst:63 -msgid "Verify that \"Alphanumeric Sender ID\" is set to Enabled." -msgstr "Verify that \"Alphanumeric Sender ID\" is set to Enabled." - -#: ../plugins/twilio.rst:65 -msgid "" -"Follow these steps to see if your account has Alphanumeric Sender enabled." -msgstr "" -"Follow these steps to see if your account has Alphanumeric Sender enabled." - -#: ../plugins/twilio.rst:70 -msgid "Send SMS Messages using an Alphanumeric Sender ID with Mautic" -msgstr "Send SMS Messages using an Alphanumeric Sender ID with Mautic" - -#: ../plugins/twilio.rst:74 -msgid "Just setup your alias in plugin settings:" -msgstr "Just setup your alias in plugin settings:" - -#: ../plugins/twilio.rst:0 -msgid "Screenshot of alphanumeric-id" -msgstr "Screenshot of alphanumeric-id" - -#: ../plugins/twilio.rst:80 -msgid "Read more info about :xref:`Alphanumeric Sender ID` on Twillio site." -msgstr "Read more info about :xref:`Alphanumeric Sender ID` on Twillio site." - -#: ../plugins/twitter.rst:4 -msgid "Twitter" -msgstr "Twitter" - -#: ../plugins/vtiger.rst:4 -msgid "Vtiger" -msgstr "Vtiger" - -#: ../plugins/zapier.rst:4 -msgid "Zapier" -msgstr "Zapier" - -#: ../plugins/zoho_crm.rst:4 -msgid "Zoho CRM" -msgstr "Zoho CRM" diff --git a/docs/locale/en_GB/LC_MESSAGES/plugins/twilio.po b/docs/locale/en_GB/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 29800c89..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/plugins/twitter.po b/docs/locale/en_GB/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 6aaf7122..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/points/points.po b/docs/locale/en_GB/LC_MESSAGES/points/points.po deleted file mode 100644 index b6c1cb28..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/reports.po b/docs/locale/en_GB/LC_MESSAGES/reports.po deleted file mode 100644 index 3e2082d0..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/reports.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Ruth Cheesley , 2022 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: 2022-11-14 11:42+0000\n" -"Last-Translator: Ruth Cheesley , 2022\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../reports/reports.rst:4 -msgid "Reports" -msgstr "Reports" diff --git a/docs/locale/en_GB/LC_MESSAGES/reports/reports.po b/docs/locale/en_GB/LC_MESSAGES/reports/reports.po deleted file mode 100644 index b19001ad..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/segments.po b/docs/locale/en_GB/LC_MESSAGES/segments.po deleted file mode 100644 index 5a5bc22a..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/segments.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Ruth Cheesley , 2022 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: 2022-11-14 11:43+0000\n" -"Last-Translator: Ruth Cheesley , 2022\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../segments/manage_segments.rst:4 -msgid "Managing Segments" -msgstr "Managing Segments" diff --git a/docs/locale/en_GB/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/en_GB/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index a0c564de..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/en_GB/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 2e593c96..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/en_GB/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 4bc2acb1..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/en_GB/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index efa18f9d..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/set_up/variables.po b/docs/locale/en_GB/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 0a01469f..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/stages/stages.po b/docs/locale/en_GB/LC_MESSAGES/stages/stages.po deleted file mode 100644 index c5e8cea9..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/themes.po b/docs/locale/en_GB/LC_MESSAGES/themes.po deleted file mode 100644 index bdd6d738..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/themes.po +++ /dev/null @@ -1,38 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Ruth Cheesley , 2022 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: 2022-11-14 11:43+0000\n" -"Last-Translator: Ruth Cheesley , 2022\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../themes/code_mode.rst:4 -msgid "Code Mode" -msgstr "Code Mode" - -#: ../themes/customizing_themes.rst:4 -msgid "Customizing Themes" -msgstr "Customising Themes" - -#: ../themes/manage_themes.rst:4 -msgid "Manage Themes" -msgstr "Manage Themes" - -#: ../themes/theme_structure.rst:4 -msgid "Theme Structure" -msgstr "Theme Structure" diff --git a/docs/locale/en_GB/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/en_GB/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 2d8a76c8..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/en_GB/LC_MESSAGES/users_roles.po b/docs/locale/en_GB/LC_MESSAGES/users_roles.po deleted file mode 100644 index 8d2e9ad4..00000000 --- a/docs/locale/en_GB/LC_MESSAGES/users_roles.po +++ /dev/null @@ -1,30 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Ruth Cheesley , 2022 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-13 16:56+0100\n" -"PO-Revision-Date: 2022-11-14 11:42+0000\n" -"Last-Translator: Ruth Cheesley , 2022\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/mautic/teams/33223/en_GB/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../users_roles/managing_roles.rst:4 -msgid "Managing Roles" -msgstr "Managing Roles" - -#: ../users_roles/managing_users.rst:4 -msgid "Managing Users" -msgstr "Managing Users" diff --git a/docs/locale/en_US/LC_MESSAGES/authentication/authentication.po b/docs/locale/en_US/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index a28ac37c..00000000 --- a/docs/locale/en_US/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/builders/creating_themes.po b/docs/locale/en_US/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 6d135fa3..00000000 --- a/docs/locale/en_US/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/en_US/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 97ecb822..00000000 --- a/docs/locale/en_US/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/en_US/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 584ed64e..00000000 --- a/docs/locale/en_US/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/en_US/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 1cd04b01..00000000 --- a/docs/locale/en_US/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/en_US/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 232fea02..00000000 --- a/docs/locale/en_US/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/en_US/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index bdfff244..00000000 --- a/docs/locale/en_US/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/en_US/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 2563dde4..00000000 --- a/docs/locale/en_US/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/categories/categories-overview.po b/docs/locale/en_US/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 40581c2c..00000000 --- a/docs/locale/en_US/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/channels/emails.po b/docs/locale/en_US/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 34690c82..00000000 --- a/docs/locale/en_US/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/channels/focus_items.po b/docs/locale/en_US/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 02d47ede..00000000 --- a/docs/locale/en_US/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/en_US/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 14c565f9..00000000 --- a/docs/locale/en_US/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/channels/push_notifications.po b/docs/locale/en_US/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index ff32eafa..00000000 --- a/docs/locale/en_US/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/channels/sms.po b/docs/locale/en_US/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 3d189392..00000000 --- a/docs/locale/en_US/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/en_US/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 4d24df80..00000000 --- a/docs/locale/en_US/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/channels/utm_tags.po b/docs/locale/en_US/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index ebb86081..00000000 --- a/docs/locale/en_US/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/channels/web_notifications.po b/docs/locale/en_US/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 88e9bcef..00000000 --- a/docs/locale/en_US/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/companies/companies_overview.po b/docs/locale/en_US/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index c6d79ac0..00000000 --- a/docs/locale/en_US/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/components/assets.po b/docs/locale/en_US/LC_MESSAGES/components/assets.po deleted file mode 100644 index 39aa8975..00000000 --- a/docs/locale/en_US/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/en_US/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 6fdd7ddb..00000000 --- a/docs/locale/en_US/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/components/forms.po b/docs/locale/en_US/LC_MESSAGES/components/forms.po deleted file mode 100644 index e9046503..00000000 --- a/docs/locale/en_US/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/components/landing_pages.po b/docs/locale/en_US/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index b620a490..00000000 --- a/docs/locale/en_US/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/configuration/settings.po b/docs/locale/en_US/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 5adaa4f3..00000000 --- a/docs/locale/en_US/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/en_US/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 139a1c92..00000000 --- a/docs/locale/en_US/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/en_US/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 4606f359..00000000 --- a/docs/locale/en_US/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/contributing/contributing.po b/docs/locale/en_US/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 0d528391..00000000 --- a/docs/locale/en_US/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/en_US/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 4ffda94d..00000000 --- a/docs/locale/en_US/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/en_US/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index d87f18ef..00000000 --- a/docs/locale/en_US/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/en_US/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 002e7e89..00000000 --- a/docs/locale/en_US/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/en_US/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 18cd6f45..00000000 --- a/docs/locale/en_US/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/en_US/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index c88171ba..00000000 --- a/docs/locale/en_US/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/index.po b/docs/locale/en_US/LC_MESSAGES/index.po deleted file mode 100644 index 6d4d1aac..00000000 --- a/docs/locale/en_US/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/en_US/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index b9b06f7f..00000000 --- a/docs/locale/en_US/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/overview/overview.po b/docs/locale/en_US/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 70d8ea6c..00000000 --- a/docs/locale/en_US/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/plugins/twilio.po b/docs/locale/en_US/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 5d63e37a..00000000 --- a/docs/locale/en_US/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/plugins/twitter.po b/docs/locale/en_US/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 328dd25f..00000000 --- a/docs/locale/en_US/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/points/points.po b/docs/locale/en_US/LC_MESSAGES/points/points.po deleted file mode 100644 index c6bae595..00000000 --- a/docs/locale/en_US/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/reports/reports.po b/docs/locale/en_US/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 58a96519..00000000 --- a/docs/locale/en_US/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/en_US/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index a216efa7..00000000 --- a/docs/locale/en_US/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/en_US/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 10dcd9e2..00000000 --- a/docs/locale/en_US/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/en_US/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index dc6c1d2f..00000000 --- a/docs/locale/en_US/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/en_US/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index a1341537..00000000 --- a/docs/locale/en_US/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/set_up/variables.po b/docs/locale/en_US/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index d14de5af..00000000 --- a/docs/locale/en_US/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/stages/stages.po b/docs/locale/en_US/LC_MESSAGES/stages/stages.po deleted file mode 100644 index d546f315..00000000 --- a/docs/locale/en_US/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/en_US/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/en_US/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index e6ef7c72..00000000 --- a/docs/locale/en_US/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: English (United States) (https://www.transifex.com/mautic/teams/33223/en_US/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/authentication/authentication.po b/docs/locale/eo/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index a0244d63..00000000 --- a/docs/locale/eo/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/builders/creating_themes.po b/docs/locale/eo/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 8b4e13dc..00000000 --- a/docs/locale/eo/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/eo/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 665cd566..00000000 --- a/docs/locale/eo/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/eo/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 3051fab8..00000000 --- a/docs/locale/eo/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/eo/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 0969a9ce..00000000 --- a/docs/locale/eo/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/eo/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index e2368fd9..00000000 --- a/docs/locale/eo/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/eo/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 2a2237cc..00000000 --- a/docs/locale/eo/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/eo/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 7e92c9a5..00000000 --- a/docs/locale/eo/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/categories/categories-overview.po b/docs/locale/eo/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 19069e3c..00000000 --- a/docs/locale/eo/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/channels/emails.po b/docs/locale/eo/LC_MESSAGES/channels/emails.po deleted file mode 100644 index bc2bc924..00000000 --- a/docs/locale/eo/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/channels/focus_items.po b/docs/locale/eo/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 16ee3db6..00000000 --- a/docs/locale/eo/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/eo/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 3717928a..00000000 --- a/docs/locale/eo/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/channels/push_notifications.po b/docs/locale/eo/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 173a23cd..00000000 --- a/docs/locale/eo/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/channels/sms.po b/docs/locale/eo/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 30465807..00000000 --- a/docs/locale/eo/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/eo/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index edd357d7..00000000 --- a/docs/locale/eo/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/channels/utm_tags.po b/docs/locale/eo/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 175944e5..00000000 --- a/docs/locale/eo/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/channels/web_notifications.po b/docs/locale/eo/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 163bf255..00000000 --- a/docs/locale/eo/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/companies/companies_overview.po b/docs/locale/eo/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 0c361613..00000000 --- a/docs/locale/eo/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/components/assets.po b/docs/locale/eo/LC_MESSAGES/components/assets.po deleted file mode 100644 index 2a99bc60..00000000 --- a/docs/locale/eo/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/eo/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index c6524532..00000000 --- a/docs/locale/eo/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/components/forms.po b/docs/locale/eo/LC_MESSAGES/components/forms.po deleted file mode 100644 index 3762db1a..00000000 --- a/docs/locale/eo/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/components/landing_pages.po b/docs/locale/eo/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index a7fcdeab..00000000 --- a/docs/locale/eo/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/configuration/settings.po b/docs/locale/eo/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 1c293483..00000000 --- a/docs/locale/eo/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/eo/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 82ec172e..00000000 --- a/docs/locale/eo/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/eo/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 0788c78c..00000000 --- a/docs/locale/eo/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/contributing/contributing.po b/docs/locale/eo/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 011c171a..00000000 --- a/docs/locale/eo/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/eo/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index b5c2bdf3..00000000 --- a/docs/locale/eo/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/eo/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index c8e24b8d..00000000 --- a/docs/locale/eo/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/eo/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 5e453d30..00000000 --- a/docs/locale/eo/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/eo/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index f113afc5..00000000 --- a/docs/locale/eo/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/eo/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 2cc740b4..00000000 --- a/docs/locale/eo/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/index.po b/docs/locale/eo/LC_MESSAGES/index.po deleted file mode 100644 index aff09a4b..00000000 --- a/docs/locale/eo/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/eo/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 71487e8f..00000000 --- a/docs/locale/eo/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/overview/overview.po b/docs/locale/eo/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 4bcb3159..00000000 --- a/docs/locale/eo/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/plugins/twilio.po b/docs/locale/eo/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 15c52ffb..00000000 --- a/docs/locale/eo/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/plugins/twitter.po b/docs/locale/eo/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index bc86cf09..00000000 --- a/docs/locale/eo/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/points/points.po b/docs/locale/eo/LC_MESSAGES/points/points.po deleted file mode 100644 index 0843e6ca..00000000 --- a/docs/locale/eo/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/reports/reports.po b/docs/locale/eo/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 2e72a2d3..00000000 --- a/docs/locale/eo/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/eo/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 938766e1..00000000 --- a/docs/locale/eo/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/eo/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 008067d0..00000000 --- a/docs/locale/eo/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/eo/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 0c4e5c91..00000000 --- a/docs/locale/eo/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/eo/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index d724d82c..00000000 --- a/docs/locale/eo/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/set_up/variables.po b/docs/locale/eo/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 2df7265f..00000000 --- a/docs/locale/eo/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/stages/stages.po b/docs/locale/eo/LC_MESSAGES/stages/stages.po deleted file mode 100644 index f945559a..00000000 --- a/docs/locale/eo/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/eo/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/eo/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 4cfcfc9d..00000000 --- a/docs/locale/eo/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Esperanto (https://www.transifex.com/mautic/teams/33223/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/authentication/authentication.po b/docs/locale/es/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index e9b4f59f..00000000 --- a/docs/locale/es/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/builders/creating_themes.po b/docs/locale/es/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index b469e6c2..00000000 --- a/docs/locale/es/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/es/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 4987dff1..00000000 --- a/docs/locale/es/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/es/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index b22600d8..00000000 --- a/docs/locale/es/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/es/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index b58a76e4..00000000 --- a/docs/locale/es/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/es/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 9714a9ab..00000000 --- a/docs/locale/es/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/es/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 598ceaac..00000000 --- a/docs/locale/es/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/es/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 351026c5..00000000 --- a/docs/locale/es/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/categories/categories-overview.po b/docs/locale/es/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index e3840b5f..00000000 --- a/docs/locale/es/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/channels/emails.po b/docs/locale/es/LC_MESSAGES/channels/emails.po deleted file mode 100644 index c0168a4e..00000000 --- a/docs/locale/es/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/channels/focus_items.po b/docs/locale/es/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index d4c7c8ee..00000000 --- a/docs/locale/es/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/es/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index a01024d6..00000000 --- a/docs/locale/es/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/channels/push_notifications.po b/docs/locale/es/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 0485255c..00000000 --- a/docs/locale/es/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/channels/sms.po b/docs/locale/es/LC_MESSAGES/channels/sms.po deleted file mode 100644 index c04f050f..00000000 --- a/docs/locale/es/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/es/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 26dab610..00000000 --- a/docs/locale/es/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/channels/utm_tags.po b/docs/locale/es/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 7577dafc..00000000 --- a/docs/locale/es/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/channels/web_notifications.po b/docs/locale/es/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index afa839c9..00000000 --- a/docs/locale/es/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/companies/companies_overview.po b/docs/locale/es/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index e6089454..00000000 --- a/docs/locale/es/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/components/assets.po b/docs/locale/es/LC_MESSAGES/components/assets.po deleted file mode 100644 index d4389fb2..00000000 --- a/docs/locale/es/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/es/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index e5297fa9..00000000 --- a/docs/locale/es/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/components/forms.po b/docs/locale/es/LC_MESSAGES/components/forms.po deleted file mode 100644 index 0e08988b..00000000 --- a/docs/locale/es/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/components/landing_pages.po b/docs/locale/es/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 8cdf61c7..00000000 --- a/docs/locale/es/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/configuration/settings.po b/docs/locale/es/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 71bdaf3b..00000000 --- a/docs/locale/es/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/es/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index de6114b4..00000000 --- a/docs/locale/es/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/es/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 69a8dc70..00000000 --- a/docs/locale/es/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/contributing/contributing.po b/docs/locale/es/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 70450bef..00000000 --- a/docs/locale/es/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/es/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 1e4dd869..00000000 --- a/docs/locale/es/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/es/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 949d97c2..00000000 --- a/docs/locale/es/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/es/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index cf2dc5c7..00000000 --- a/docs/locale/es/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/es/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 8e88d86e..00000000 --- a/docs/locale/es/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/es/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 15433789..00000000 --- a/docs/locale/es/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/index.po b/docs/locale/es/LC_MESSAGES/index.po deleted file mode 100644 index 23338a7d..00000000 --- a/docs/locale/es/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/es/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 8b214dd4..00000000 --- a/docs/locale/es/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/overview/overview.po b/docs/locale/es/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 3851d4fe..00000000 --- a/docs/locale/es/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/plugins/twilio.po b/docs/locale/es/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index baa1163c..00000000 --- a/docs/locale/es/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/plugins/twitter.po b/docs/locale/es/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index eaaac00b..00000000 --- a/docs/locale/es/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/points/points.po b/docs/locale/es/LC_MESSAGES/points/points.po deleted file mode 100644 index 4e5c69b8..00000000 --- a/docs/locale/es/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/reports/reports.po b/docs/locale/es/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 0ea97f9f..00000000 --- a/docs/locale/es/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/es/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 0b5011bd..00000000 --- a/docs/locale/es/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/es/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index f0eeb31c..00000000 --- a/docs/locale/es/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/es/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 2e2cc7c9..00000000 --- a/docs/locale/es/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/es/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 8aacd9b3..00000000 --- a/docs/locale/es/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/set_up/variables.po b/docs/locale/es/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 9d83d954..00000000 --- a/docs/locale/es/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/stages/stages.po b/docs/locale/es/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 44bf092d..00000000 --- a/docs/locale/es/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/es/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/es/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index d7894bd1..00000000 --- a/docs/locale/es/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (https://www.transifex.com/mautic/teams/33223/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/authentication/authentication.po b/docs/locale/es_AR/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 70f5ac9b..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/builders/creating_themes.po b/docs/locale/es_AR/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 653f4586..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/es_AR/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index f1ce8af5..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/es_AR/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 46eb10cf..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/es_AR/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 6f92482a..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/es_AR/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index b0f58b46..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/es_AR/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 132f5e48..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/es_AR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 295a5b6c..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/categories/categories-overview.po b/docs/locale/es_AR/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index eab249f6..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/channels/emails.po b/docs/locale/es_AR/LC_MESSAGES/channels/emails.po deleted file mode 100644 index e7f29128..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/channels/focus_items.po b/docs/locale/es_AR/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index d0ecb1b9..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/es_AR/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 969a4eee..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/channels/push_notifications.po b/docs/locale/es_AR/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 571866dc..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/channels/sms.po b/docs/locale/es_AR/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 2f3d2574..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/es_AR/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 427a9381..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/channels/utm_tags.po b/docs/locale/es_AR/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 2df73e64..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/channels/web_notifications.po b/docs/locale/es_AR/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 6c00e9cf..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/companies/companies_overview.po b/docs/locale/es_AR/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 168e51ef..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/components/assets.po b/docs/locale/es_AR/LC_MESSAGES/components/assets.po deleted file mode 100644 index d657a11e..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/es_AR/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index e1c2025e..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/components/forms.po b/docs/locale/es_AR/LC_MESSAGES/components/forms.po deleted file mode 100644 index c594ab08..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/components/landing_pages.po b/docs/locale/es_AR/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 2fa1b925..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/configuration/settings.po b/docs/locale/es_AR/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 866ac55d..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/es_AR/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 8c60e3f9..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/es_AR/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index f5374a7c..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/contributing/contributing.po b/docs/locale/es_AR/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 205742d3..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/es_AR/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 8e00e082..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/es_AR/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 6694e91c..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/es_AR/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 83de6358..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/es_AR/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index cb152bf2..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/es_AR/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 521f0d19..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/index.po b/docs/locale/es_AR/LC_MESSAGES/index.po deleted file mode 100644 index be4361c3..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/es_AR/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 1d1be338..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/overview/overview.po b/docs/locale/es_AR/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 4923a88b..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/plugins/twilio.po b/docs/locale/es_AR/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 8ba6e30d..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/plugins/twitter.po b/docs/locale/es_AR/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 79c4e703..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/points/points.po b/docs/locale/es_AR/LC_MESSAGES/points/points.po deleted file mode 100644 index 068491f7..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/reports/reports.po b/docs/locale/es_AR/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 6663db4d..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/es_AR/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 34726dcc..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/es_AR/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 93c5fceb..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/es_AR/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 62ab8e7f..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/es_AR/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index e30f1214..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/set_up/variables.po b/docs/locale/es_AR/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index b3d596cb..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/stages/stages.po b/docs/locale/es_AR/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 6253145e..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/es_AR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/es_AR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index a82c4406..00000000 --- a/docs/locale/es_AR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/mautic/teams/33223/es_AR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/authentication/authentication.po b/docs/locale/es_EC/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index f12f10a2..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/builders/creating_themes.po b/docs/locale/es_EC/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 6a52f009..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/es_EC/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index d80cab2c..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/es_EC/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 7c88c83c..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/es_EC/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 26407328..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/es_EC/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 9aa71b6b..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/es_EC/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 70a2b075..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/es_EC/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 739e97fa..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/categories/categories-overview.po b/docs/locale/es_EC/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index cb858623..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/channels/emails.po b/docs/locale/es_EC/LC_MESSAGES/channels/emails.po deleted file mode 100644 index a6b890cc..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/channels/focus_items.po b/docs/locale/es_EC/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 0f6a54aa..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/es_EC/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 76c987c6..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/channels/push_notifications.po b/docs/locale/es_EC/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index cef7b213..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/channels/sms.po b/docs/locale/es_EC/LC_MESSAGES/channels/sms.po deleted file mode 100644 index df682044..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/es_EC/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index c0b6140b..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/channels/utm_tags.po b/docs/locale/es_EC/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index d53345dc..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/channels/web_notifications.po b/docs/locale/es_EC/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index b8956bc5..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/companies/companies_overview.po b/docs/locale/es_EC/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index abd06f0c..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/components/assets.po b/docs/locale/es_EC/LC_MESSAGES/components/assets.po deleted file mode 100644 index 3103743e..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/es_EC/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index b6eabbf9..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/components/forms.po b/docs/locale/es_EC/LC_MESSAGES/components/forms.po deleted file mode 100644 index d2b46dbf..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/components/landing_pages.po b/docs/locale/es_EC/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 7905eff8..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/configuration/settings.po b/docs/locale/es_EC/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index f550dfb4..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/es_EC/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index a28bb4a2..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/es_EC/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 762ec809..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/contributing/contributing.po b/docs/locale/es_EC/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 870fc59d..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/es_EC/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 52614cef..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/es_EC/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index c2857e52..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/es_EC/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 4dd24299..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/es_EC/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 089ece23..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/es_EC/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 833aaa96..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/index.po b/docs/locale/es_EC/LC_MESSAGES/index.po deleted file mode 100644 index b42b9e40..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/es_EC/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index b8019b0e..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/overview/overview.po b/docs/locale/es_EC/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 1d6f84db..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/plugins/twilio.po b/docs/locale/es_EC/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 148de247..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/plugins/twitter.po b/docs/locale/es_EC/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 2f2e02fc..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/points/points.po b/docs/locale/es_EC/LC_MESSAGES/points/points.po deleted file mode 100644 index c5eb25e8..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/reports/reports.po b/docs/locale/es_EC/LC_MESSAGES/reports/reports.po deleted file mode 100644 index f46180be..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/es_EC/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index b8348d12..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/es_EC/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 7f9c09f1..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/es_EC/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 2ad0c1e3..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/es_EC/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 8757effd..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/set_up/variables.po b/docs/locale/es_EC/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index a42ed3a9..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/stages/stages.po b/docs/locale/es_EC/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 287b8a6b..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/es_EC/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/es_EC/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 4a3b599f..00000000 --- a/docs/locale/es_EC/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/mautic/teams/33223/es_EC/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_EC\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/authentication/authentication.po b/docs/locale/es_MX/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 9a622981..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/builders/creating_themes.po b/docs/locale/es_MX/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index fccd5dea..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/es_MX/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index b686903b..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/es_MX/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 0fd00b4d..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/es_MX/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index b828eec1..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/es_MX/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 48fb5ee4..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/es_MX/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 5e628588..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/es_MX/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 04dbf123..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/categories/categories-overview.po b/docs/locale/es_MX/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 687c225b..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/channels/emails.po b/docs/locale/es_MX/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 881abda8..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/channels/focus_items.po b/docs/locale/es_MX/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 371c29f8..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/es_MX/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 669bfff7..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/channels/push_notifications.po b/docs/locale/es_MX/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 29a309e6..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/channels/sms.po b/docs/locale/es_MX/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 83f8d2c2..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/es_MX/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index fc0a9207..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/channels/utm_tags.po b/docs/locale/es_MX/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index a0dc8352..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/channels/web_notifications.po b/docs/locale/es_MX/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 01620937..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/companies/companies_overview.po b/docs/locale/es_MX/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index a89dad15..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/components/assets.po b/docs/locale/es_MX/LC_MESSAGES/components/assets.po deleted file mode 100644 index bdaa9bcd..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/es_MX/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index f421d446..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/components/forms.po b/docs/locale/es_MX/LC_MESSAGES/components/forms.po deleted file mode 100644 index 815381dc..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/components/landing_pages.po b/docs/locale/es_MX/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 56dd9af7..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/configuration/settings.po b/docs/locale/es_MX/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 17e58462..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/es_MX/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index a80a6358..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/es_MX/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 0c8cd553..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/contributing/contributing.po b/docs/locale/es_MX/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 0cd4b0a6..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/es_MX/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 0b74bb15..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/es_MX/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index d5985438..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/es_MX/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index e4588ec3..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/es_MX/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index b9cb9d2a..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/es_MX/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index b6559f70..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/index.po b/docs/locale/es_MX/LC_MESSAGES/index.po deleted file mode 100644 index 8870a363..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/es_MX/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 4c31596c..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/overview/overview.po b/docs/locale/es_MX/LC_MESSAGES/overview/overview.po deleted file mode 100644 index d9f1263c..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/plugins/twilio.po b/docs/locale/es_MX/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index b322a149..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/plugins/twitter.po b/docs/locale/es_MX/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 532d8a4f..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/points/points.po b/docs/locale/es_MX/LC_MESSAGES/points/points.po deleted file mode 100644 index 11a28d0b..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/reports/reports.po b/docs/locale/es_MX/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 7694477d..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/es_MX/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 054dd073..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/es_MX/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 28b94b97..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/es_MX/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 93e84e7a..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/es_MX/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 0f13d7e4..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/set_up/variables.po b/docs/locale/es_MX/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index eec8ef36..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/stages/stages.po b/docs/locale/es_MX/LC_MESSAGES/stages/stages.po deleted file mode 100644 index f0787685..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/es_MX/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/es_MX/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 819089eb..00000000 --- a/docs/locale/es_MX/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/mautic/teams/33223/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/authentication/authentication.po b/docs/locale/et/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index b6887dfc..00000000 --- a/docs/locale/et/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/builders/creating_themes.po b/docs/locale/et/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 96a7fbf6..00000000 --- a/docs/locale/et/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/et/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 4fabccf9..00000000 --- a/docs/locale/et/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/et/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index f820d697..00000000 --- a/docs/locale/et/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/et/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 96244c8e..00000000 --- a/docs/locale/et/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/et/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 2b2498e8..00000000 --- a/docs/locale/et/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/et/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 8d6130a2..00000000 --- a/docs/locale/et/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/et/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index d2bce7b4..00000000 --- a/docs/locale/et/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/categories/categories-overview.po b/docs/locale/et/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 471422f4..00000000 --- a/docs/locale/et/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/channels/emails.po b/docs/locale/et/LC_MESSAGES/channels/emails.po deleted file mode 100644 index bc715696..00000000 --- a/docs/locale/et/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/channels/focus_items.po b/docs/locale/et/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 65ed7ff3..00000000 --- a/docs/locale/et/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/et/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index c1503f91..00000000 --- a/docs/locale/et/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/channels/push_notifications.po b/docs/locale/et/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index c6a0465f..00000000 --- a/docs/locale/et/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/channels/sms.po b/docs/locale/et/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 880500f7..00000000 --- a/docs/locale/et/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/et/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index dcc29149..00000000 --- a/docs/locale/et/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/channels/utm_tags.po b/docs/locale/et/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 7ad06a6a..00000000 --- a/docs/locale/et/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/channels/web_notifications.po b/docs/locale/et/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 23afbee4..00000000 --- a/docs/locale/et/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/companies/companies_overview.po b/docs/locale/et/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 86eb7ac2..00000000 --- a/docs/locale/et/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/components/assets.po b/docs/locale/et/LC_MESSAGES/components/assets.po deleted file mode 100644 index b185d531..00000000 --- a/docs/locale/et/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/et/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 8930463c..00000000 --- a/docs/locale/et/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/components/forms.po b/docs/locale/et/LC_MESSAGES/components/forms.po deleted file mode 100644 index ca0f3a3c..00000000 --- a/docs/locale/et/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/components/landing_pages.po b/docs/locale/et/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 49ad3a23..00000000 --- a/docs/locale/et/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/configuration/settings.po b/docs/locale/et/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 5d133a25..00000000 --- a/docs/locale/et/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/et/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 2d01dac7..00000000 --- a/docs/locale/et/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/et/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index dc3d930f..00000000 --- a/docs/locale/et/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/contributing/contributing.po b/docs/locale/et/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 2a862065..00000000 --- a/docs/locale/et/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/et/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index c6218014..00000000 --- a/docs/locale/et/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/et/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index a1333d2a..00000000 --- a/docs/locale/et/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/et/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 01108092..00000000 --- a/docs/locale/et/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/et/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index c1410392..00000000 --- a/docs/locale/et/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/et/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 1ddfc44f..00000000 --- a/docs/locale/et/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/index.po b/docs/locale/et/LC_MESSAGES/index.po deleted file mode 100644 index c83be07c..00000000 --- a/docs/locale/et/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/et/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 2fb9ca00..00000000 --- a/docs/locale/et/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/overview/overview.po b/docs/locale/et/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 2bd33311..00000000 --- a/docs/locale/et/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/plugins/twilio.po b/docs/locale/et/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index dbc60aad..00000000 --- a/docs/locale/et/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/plugins/twitter.po b/docs/locale/et/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index e0cbf8a3..00000000 --- a/docs/locale/et/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/points/points.po b/docs/locale/et/LC_MESSAGES/points/points.po deleted file mode 100644 index 6997a921..00000000 --- a/docs/locale/et/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/reports/reports.po b/docs/locale/et/LC_MESSAGES/reports/reports.po deleted file mode 100644 index f4b6b1ae..00000000 --- a/docs/locale/et/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/et/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 3690a9d0..00000000 --- a/docs/locale/et/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/et/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 5fd9b20f..00000000 --- a/docs/locale/et/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/et/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 9a680d84..00000000 --- a/docs/locale/et/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/et/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 297e2ea9..00000000 --- a/docs/locale/et/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/set_up/variables.po b/docs/locale/et/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 7152858b..00000000 --- a/docs/locale/et/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/stages/stages.po b/docs/locale/et/LC_MESSAGES/stages/stages.po deleted file mode 100644 index ddd804c7..00000000 --- a/docs/locale/et/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/et/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/et/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index ada5a5dc..00000000 --- a/docs/locale/et/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Estonian (https://www.transifex.com/mautic/teams/33223/et/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/authentication/authentication.po b/docs/locale/eu/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 04b997b9..00000000 --- a/docs/locale/eu/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/builders/creating_themes.po b/docs/locale/eu/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 11b4c82e..00000000 --- a/docs/locale/eu/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/eu/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index aeaa869f..00000000 --- a/docs/locale/eu/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/eu/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 85169f80..00000000 --- a/docs/locale/eu/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/eu/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 835379a5..00000000 --- a/docs/locale/eu/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/eu/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index aeecd4bb..00000000 --- a/docs/locale/eu/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/eu/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 2282729f..00000000 --- a/docs/locale/eu/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/eu/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index f6585159..00000000 --- a/docs/locale/eu/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/categories/categories-overview.po b/docs/locale/eu/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index a43ec565..00000000 --- a/docs/locale/eu/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/channels/emails.po b/docs/locale/eu/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 93354ed3..00000000 --- a/docs/locale/eu/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/channels/focus_items.po b/docs/locale/eu/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 7010726e..00000000 --- a/docs/locale/eu/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/eu/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 1b463a88..00000000 --- a/docs/locale/eu/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/channels/push_notifications.po b/docs/locale/eu/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 23c6960d..00000000 --- a/docs/locale/eu/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/channels/sms.po b/docs/locale/eu/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 704c4508..00000000 --- a/docs/locale/eu/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/eu/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 20fdfd8c..00000000 --- a/docs/locale/eu/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/channels/utm_tags.po b/docs/locale/eu/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 30472257..00000000 --- a/docs/locale/eu/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/channels/web_notifications.po b/docs/locale/eu/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 54f2099a..00000000 --- a/docs/locale/eu/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/companies/companies_overview.po b/docs/locale/eu/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index eb7ffdad..00000000 --- a/docs/locale/eu/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/components/assets.po b/docs/locale/eu/LC_MESSAGES/components/assets.po deleted file mode 100644 index 78b72f9a..00000000 --- a/docs/locale/eu/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/eu/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 6ced4a96..00000000 --- a/docs/locale/eu/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/components/forms.po b/docs/locale/eu/LC_MESSAGES/components/forms.po deleted file mode 100644 index 2757900f..00000000 --- a/docs/locale/eu/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/components/landing_pages.po b/docs/locale/eu/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 0d69b1a2..00000000 --- a/docs/locale/eu/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/configuration/settings.po b/docs/locale/eu/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index d9c1c3d2..00000000 --- a/docs/locale/eu/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/eu/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 922b3573..00000000 --- a/docs/locale/eu/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/eu/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 67afc89b..00000000 --- a/docs/locale/eu/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/contributing/contributing.po b/docs/locale/eu/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index f769d5d1..00000000 --- a/docs/locale/eu/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/eu/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 780eada1..00000000 --- a/docs/locale/eu/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/eu/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index bccc6fc5..00000000 --- a/docs/locale/eu/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/eu/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 695a7b5c..00000000 --- a/docs/locale/eu/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/eu/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 54628c73..00000000 --- a/docs/locale/eu/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/eu/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index d32993ec..00000000 --- a/docs/locale/eu/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/index.po b/docs/locale/eu/LC_MESSAGES/index.po deleted file mode 100644 index 3a4acbfe..00000000 --- a/docs/locale/eu/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/eu/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index f186b4db..00000000 --- a/docs/locale/eu/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/overview/overview.po b/docs/locale/eu/LC_MESSAGES/overview/overview.po deleted file mode 100644 index de38da45..00000000 --- a/docs/locale/eu/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/plugins/twilio.po b/docs/locale/eu/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 85571a87..00000000 --- a/docs/locale/eu/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/plugins/twitter.po b/docs/locale/eu/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index f50908bc..00000000 --- a/docs/locale/eu/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/points/points.po b/docs/locale/eu/LC_MESSAGES/points/points.po deleted file mode 100644 index affc9c62..00000000 --- a/docs/locale/eu/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/reports/reports.po b/docs/locale/eu/LC_MESSAGES/reports/reports.po deleted file mode 100644 index f2559b9c..00000000 --- a/docs/locale/eu/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/eu/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 4ef857f9..00000000 --- a/docs/locale/eu/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/eu/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 56828183..00000000 --- a/docs/locale/eu/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/eu/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 100d9b44..00000000 --- a/docs/locale/eu/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/eu/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 1c238d1c..00000000 --- a/docs/locale/eu/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/set_up/variables.po b/docs/locale/eu/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 108e071f..00000000 --- a/docs/locale/eu/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/stages/stages.po b/docs/locale/eu/LC_MESSAGES/stages/stages.po deleted file mode 100644 index b6946e8d..00000000 --- a/docs/locale/eu/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/eu/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/eu/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 8aa1240c..00000000 --- a/docs/locale/eu/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Basque (https://www.transifex.com/mautic/teams/33223/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/authentication/authentication.po b/docs/locale/fa_IR/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index d2905af5..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/builders/creating_themes.po b/docs/locale/fa_IR/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index f3cf3bd5..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/fa_IR/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 5caacfdb..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/fa_IR/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 87caa7c1..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/fa_IR/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 039dc920..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/fa_IR/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 3afa7005..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/fa_IR/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 326183eb..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/fa_IR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index f71d5cf4..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/categories/categories-overview.po b/docs/locale/fa_IR/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index deea7714..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/channels/emails.po b/docs/locale/fa_IR/LC_MESSAGES/channels/emails.po deleted file mode 100644 index f4200d0e..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/channels/focus_items.po b/docs/locale/fa_IR/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 3dc914de..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/fa_IR/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 9ef76137..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/channels/push_notifications.po b/docs/locale/fa_IR/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index d0dbf5de..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/channels/sms.po b/docs/locale/fa_IR/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 4067b947..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/fa_IR/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 76cc9a40..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/channels/utm_tags.po b/docs/locale/fa_IR/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 7cfedbdd..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/channels/web_notifications.po b/docs/locale/fa_IR/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 58a0be78..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/companies/companies_overview.po b/docs/locale/fa_IR/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 9ba51fab..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/components/assets.po b/docs/locale/fa_IR/LC_MESSAGES/components/assets.po deleted file mode 100644 index cd006b50..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/fa_IR/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 91aaa0a6..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/components/forms.po b/docs/locale/fa_IR/LC_MESSAGES/components/forms.po deleted file mode 100644 index df7ba614..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/components/landing_pages.po b/docs/locale/fa_IR/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 58f683aa..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/configuration/settings.po b/docs/locale/fa_IR/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index c838549c..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/fa_IR/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index e2628a64..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/fa_IR/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 9e936c91..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/contributing/contributing.po b/docs/locale/fa_IR/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 5232f527..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/fa_IR/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 6cf81bb8..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/fa_IR/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index d3f95875..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/fa_IR/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 56d3405e..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/fa_IR/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 55be906a..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/fa_IR/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 0a84f846..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/index.po b/docs/locale/fa_IR/LC_MESSAGES/index.po deleted file mode 100644 index 5df3fb8c..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/fa_IR/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 8b31279e..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/overview/overview.po b/docs/locale/fa_IR/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 03a6494d..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/plugins/twilio.po b/docs/locale/fa_IR/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index e4bbcb0e..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/plugins/twitter.po b/docs/locale/fa_IR/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 6e9d8dbb..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/points/points.po b/docs/locale/fa_IR/LC_MESSAGES/points/points.po deleted file mode 100644 index 68621dc0..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/reports/reports.po b/docs/locale/fa_IR/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 99384ac9..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/fa_IR/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 92ec1860..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/fa_IR/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index bb870b4c..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/fa_IR/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index bdf6561e..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/fa_IR/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 174dc9ff..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/set_up/variables.po b/docs/locale/fa_IR/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index eb225305..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/stages/stages.po b/docs/locale/fa_IR/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 9e9f70e9..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/fa_IR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/fa_IR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 8dda88b8..00000000 --- a/docs/locale/fa_IR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Persian (Iran) (https://www.transifex.com/mautic/teams/33223/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/authentication/authentication.po b/docs/locale/fi/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 8f830145..00000000 --- a/docs/locale/fi/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/builders/creating_themes.po b/docs/locale/fi/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 92a35cff..00000000 --- a/docs/locale/fi/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/fi/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 9a3ae8bf..00000000 --- a/docs/locale/fi/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/fi/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 7be9222a..00000000 --- a/docs/locale/fi/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/fi/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 63a6bc8c..00000000 --- a/docs/locale/fi/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/fi/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 14df4d6b..00000000 --- a/docs/locale/fi/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/fi/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index f840c44d..00000000 --- a/docs/locale/fi/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/fi/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 602283eb..00000000 --- a/docs/locale/fi/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/categories/categories-overview.po b/docs/locale/fi/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index d4a267a0..00000000 --- a/docs/locale/fi/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/channels/emails.po b/docs/locale/fi/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 1c471c12..00000000 --- a/docs/locale/fi/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/channels/focus_items.po b/docs/locale/fi/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 8e1e4933..00000000 --- a/docs/locale/fi/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/fi/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 6cca7b7b..00000000 --- a/docs/locale/fi/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/channels/push_notifications.po b/docs/locale/fi/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index d36b00d6..00000000 --- a/docs/locale/fi/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/channels/sms.po b/docs/locale/fi/LC_MESSAGES/channels/sms.po deleted file mode 100644 index d8064573..00000000 --- a/docs/locale/fi/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/fi/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 6f77a088..00000000 --- a/docs/locale/fi/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/channels/utm_tags.po b/docs/locale/fi/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 9f012f8e..00000000 --- a/docs/locale/fi/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/channels/web_notifications.po b/docs/locale/fi/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index a9ec8194..00000000 --- a/docs/locale/fi/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/companies/companies_overview.po b/docs/locale/fi/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 732aee55..00000000 --- a/docs/locale/fi/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/components/assets.po b/docs/locale/fi/LC_MESSAGES/components/assets.po deleted file mode 100644 index 1e05c221..00000000 --- a/docs/locale/fi/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/fi/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 01977c07..00000000 --- a/docs/locale/fi/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/components/forms.po b/docs/locale/fi/LC_MESSAGES/components/forms.po deleted file mode 100644 index 47dae7e7..00000000 --- a/docs/locale/fi/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/components/landing_pages.po b/docs/locale/fi/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index def25040..00000000 --- a/docs/locale/fi/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/configuration/settings.po b/docs/locale/fi/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 1c986e64..00000000 --- a/docs/locale/fi/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/fi/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 7ea51a10..00000000 --- a/docs/locale/fi/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/fi/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 08276688..00000000 --- a/docs/locale/fi/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/contributing/contributing.po b/docs/locale/fi/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 50386eeb..00000000 --- a/docs/locale/fi/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/fi/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 040f37ed..00000000 --- a/docs/locale/fi/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/fi/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 5a7ecfaf..00000000 --- a/docs/locale/fi/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/fi/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 6fc48ffd..00000000 --- a/docs/locale/fi/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/fi/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 00f232e7..00000000 --- a/docs/locale/fi/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/fi/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 33c963c2..00000000 --- a/docs/locale/fi/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/index.po b/docs/locale/fi/LC_MESSAGES/index.po deleted file mode 100644 index 8efd01c1..00000000 --- a/docs/locale/fi/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/fi/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index eac010be..00000000 --- a/docs/locale/fi/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/overview/overview.po b/docs/locale/fi/LC_MESSAGES/overview/overview.po deleted file mode 100644 index c4d46daa..00000000 --- a/docs/locale/fi/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/plugins/twilio.po b/docs/locale/fi/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 82bb00b5..00000000 --- a/docs/locale/fi/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/plugins/twitter.po b/docs/locale/fi/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 9f7e2408..00000000 --- a/docs/locale/fi/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/points/points.po b/docs/locale/fi/LC_MESSAGES/points/points.po deleted file mode 100644 index 760cd4a9..00000000 --- a/docs/locale/fi/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/reports/reports.po b/docs/locale/fi/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 7ca5cb66..00000000 --- a/docs/locale/fi/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/fi/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 3a4d902e..00000000 --- a/docs/locale/fi/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/fi/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 9f0436ad..00000000 --- a/docs/locale/fi/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/fi/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 6c8ab3e7..00000000 --- a/docs/locale/fi/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/fi/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index f361904d..00000000 --- a/docs/locale/fi/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/set_up/variables.po b/docs/locale/fi/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index e33c4448..00000000 --- a/docs/locale/fi/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/stages/stages.po b/docs/locale/fi/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 3604fe79..00000000 --- a/docs/locale/fi/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/fi/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/fi/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 16754ae3..00000000 --- a/docs/locale/fi/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (https://www.transifex.com/mautic/teams/33223/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/authentication/authentication.po b/docs/locale/fi_FI/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 6a4001c2..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/builders/creating_themes.po b/docs/locale/fi_FI/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index bad84872..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/fi_FI/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 6aa74d80..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/fi_FI/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 51254443..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/fi_FI/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 6a10bec9..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/fi_FI/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index eca52a18..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/fi_FI/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index eae5e814..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/fi_FI/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index a27a0014..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/categories/categories-overview.po b/docs/locale/fi_FI/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index defb9749..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/channels/emails.po b/docs/locale/fi_FI/LC_MESSAGES/channels/emails.po deleted file mode 100644 index e9e9d11f..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/channels/focus_items.po b/docs/locale/fi_FI/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 643d785a..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/fi_FI/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 0cea314f..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/channels/push_notifications.po b/docs/locale/fi_FI/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index e3fcd0a6..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/channels/sms.po b/docs/locale/fi_FI/LC_MESSAGES/channels/sms.po deleted file mode 100644 index ea71eaf0..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/fi_FI/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 392752fd..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/channels/utm_tags.po b/docs/locale/fi_FI/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 71f2de59..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/channels/web_notifications.po b/docs/locale/fi_FI/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index dbd5190f..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/companies/companies_overview.po b/docs/locale/fi_FI/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index ffd2b281..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/components/assets.po b/docs/locale/fi_FI/LC_MESSAGES/components/assets.po deleted file mode 100644 index b2bdaed0..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/fi_FI/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 58420517..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/components/forms.po b/docs/locale/fi_FI/LC_MESSAGES/components/forms.po deleted file mode 100644 index 41796a76..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/components/landing_pages.po b/docs/locale/fi_FI/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index b4551a02..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/configuration/settings.po b/docs/locale/fi_FI/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 981092eb..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/fi_FI/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 906b1636..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/fi_FI/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 9a413b82..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/contributing/contributing.po b/docs/locale/fi_FI/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 01229d29..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/fi_FI/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 1fd29547..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/fi_FI/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index c22d254d..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/fi_FI/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index dfbeb668..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/fi_FI/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 3871e486..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/fi_FI/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 927f01b6..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/index.po b/docs/locale/fi_FI/LC_MESSAGES/index.po deleted file mode 100644 index fcee485a..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/fi_FI/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 463c4955..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/overview/overview.po b/docs/locale/fi_FI/LC_MESSAGES/overview/overview.po deleted file mode 100644 index cf2c10c5..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/plugins/twilio.po b/docs/locale/fi_FI/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 2bdfe529..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/plugins/twitter.po b/docs/locale/fi_FI/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 6b675285..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/points/points.po b/docs/locale/fi_FI/LC_MESSAGES/points/points.po deleted file mode 100644 index 9f5b327c..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/reports/reports.po b/docs/locale/fi_FI/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 46033861..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/fi_FI/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 1ae609f8..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/fi_FI/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 629b3663..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/fi_FI/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 77e5ac0a..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/fi_FI/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 6b7c27e8..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/set_up/variables.po b/docs/locale/fi_FI/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 28f8137e..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/stages/stages.po b/docs/locale/fi_FI/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 5ce4eeb0..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/fi_FI/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/fi_FI/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 7f8c8db3..00000000 --- a/docs/locale/fi_FI/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Finnish (Finland) (https://www.transifex.com/mautic/teams/33223/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/authentication/authentication.po b/docs/locale/fil/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 36c07f30..00000000 --- a/docs/locale/fil/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/builders/creating_themes.po b/docs/locale/fil/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index a16cf30f..00000000 --- a/docs/locale/fil/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/fil/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index a7e80f05..00000000 --- a/docs/locale/fil/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/fil/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 3d439857..00000000 --- a/docs/locale/fil/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/fil/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index c59a178b..00000000 --- a/docs/locale/fil/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/fil/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index ace6c921..00000000 --- a/docs/locale/fil/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/fil/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index e3655bee..00000000 --- a/docs/locale/fil/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/fil/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 21feaec3..00000000 --- a/docs/locale/fil/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/categories/categories-overview.po b/docs/locale/fil/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 7f373c09..00000000 --- a/docs/locale/fil/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/channels/emails.po b/docs/locale/fil/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 7396a49a..00000000 --- a/docs/locale/fil/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/channels/focus_items.po b/docs/locale/fil/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index a0075488..00000000 --- a/docs/locale/fil/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/fil/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 87e9d3e7..00000000 --- a/docs/locale/fil/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/channels/push_notifications.po b/docs/locale/fil/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 0947d7bb..00000000 --- a/docs/locale/fil/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/channels/sms.po b/docs/locale/fil/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 31afcf2f..00000000 --- a/docs/locale/fil/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/fil/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index c757105e..00000000 --- a/docs/locale/fil/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/channels/utm_tags.po b/docs/locale/fil/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 5b1ec606..00000000 --- a/docs/locale/fil/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/channels/web_notifications.po b/docs/locale/fil/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index a2a25012..00000000 --- a/docs/locale/fil/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/companies/companies_overview.po b/docs/locale/fil/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 3258332a..00000000 --- a/docs/locale/fil/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/components/assets.po b/docs/locale/fil/LC_MESSAGES/components/assets.po deleted file mode 100644 index 249d6ab7..00000000 --- a/docs/locale/fil/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/fil/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 3c71724d..00000000 --- a/docs/locale/fil/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/components/forms.po b/docs/locale/fil/LC_MESSAGES/components/forms.po deleted file mode 100644 index 21a58764..00000000 --- a/docs/locale/fil/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/components/landing_pages.po b/docs/locale/fil/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 06ab2019..00000000 --- a/docs/locale/fil/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/configuration/settings.po b/docs/locale/fil/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index db193e51..00000000 --- a/docs/locale/fil/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/fil/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 37f6cfdf..00000000 --- a/docs/locale/fil/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/fil/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 74c88c75..00000000 --- a/docs/locale/fil/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/contributing/contributing.po b/docs/locale/fil/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 134f3212..00000000 --- a/docs/locale/fil/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/fil/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 6d76497c..00000000 --- a/docs/locale/fil/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/fil/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index b98608ab..00000000 --- a/docs/locale/fil/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/fil/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 0e52aa7e..00000000 --- a/docs/locale/fil/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/fil/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index af7830c0..00000000 --- a/docs/locale/fil/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/fil/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 9f0d35b8..00000000 --- a/docs/locale/fil/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/index.po b/docs/locale/fil/LC_MESSAGES/index.po deleted file mode 100644 index 8184b5b0..00000000 --- a/docs/locale/fil/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/fil/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 9a9dc010..00000000 --- a/docs/locale/fil/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/overview/overview.po b/docs/locale/fil/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 290c15e5..00000000 --- a/docs/locale/fil/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/plugins/twilio.po b/docs/locale/fil/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 2457dd37..00000000 --- a/docs/locale/fil/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/plugins/twitter.po b/docs/locale/fil/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 3cbbb6bb..00000000 --- a/docs/locale/fil/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/points/points.po b/docs/locale/fil/LC_MESSAGES/points/points.po deleted file mode 100644 index 8aa7a95b..00000000 --- a/docs/locale/fil/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/reports/reports.po b/docs/locale/fil/LC_MESSAGES/reports/reports.po deleted file mode 100644 index af773b24..00000000 --- a/docs/locale/fil/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/fil/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 89c7f605..00000000 --- a/docs/locale/fil/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/fil/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 353814d7..00000000 --- a/docs/locale/fil/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/fil/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index e5d876e0..00000000 --- a/docs/locale/fil/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/fil/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 7c5d70fd..00000000 --- a/docs/locale/fil/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/set_up/variables.po b/docs/locale/fil/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index bfcb52e0..00000000 --- a/docs/locale/fil/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/stages/stages.po b/docs/locale/fil/LC_MESSAGES/stages/stages.po deleted file mode 100644 index e5b92d89..00000000 --- a/docs/locale/fil/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/fil/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/fil/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 9ea73e0e..00000000 --- a/docs/locale/fil/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Filipino (https://www.transifex.com/mautic/teams/33223/fil/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fil\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || n % 10 != 6 || n % 10 != 9);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/authentication/authentication.po b/docs/locale/fr/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 06701a47..00000000 --- a/docs/locale/fr/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/builders/creating_themes.po b/docs/locale/fr/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 7dfb4f91..00000000 --- a/docs/locale/fr/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/fr/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 82884779..00000000 --- a/docs/locale/fr/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/fr/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index e0d259d6..00000000 --- a/docs/locale/fr/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/fr/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index b22ebe70..00000000 --- a/docs/locale/fr/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/fr/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index aa0f35dd..00000000 --- a/docs/locale/fr/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/fr/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 7a139a95..00000000 --- a/docs/locale/fr/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/fr/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 797b1a0b..00000000 --- a/docs/locale/fr/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/categories/categories-overview.po b/docs/locale/fr/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 78f8d9f2..00000000 --- a/docs/locale/fr/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/channels/emails.po b/docs/locale/fr/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 15165866..00000000 --- a/docs/locale/fr/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/channels/focus_items.po b/docs/locale/fr/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 3e8be49c..00000000 --- a/docs/locale/fr/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/fr/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index ffa88442..00000000 --- a/docs/locale/fr/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/channels/push_notifications.po b/docs/locale/fr/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 609464ef..00000000 --- a/docs/locale/fr/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/channels/sms.po b/docs/locale/fr/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 93166210..00000000 --- a/docs/locale/fr/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/fr/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index f53fae63..00000000 --- a/docs/locale/fr/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/channels/utm_tags.po b/docs/locale/fr/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 326cfa54..00000000 --- a/docs/locale/fr/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/channels/web_notifications.po b/docs/locale/fr/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index b6479d8b..00000000 --- a/docs/locale/fr/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/companies/companies_overview.po b/docs/locale/fr/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 7a61e9b5..00000000 --- a/docs/locale/fr/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/components/assets.po b/docs/locale/fr/LC_MESSAGES/components/assets.po deleted file mode 100644 index 8be2cf01..00000000 --- a/docs/locale/fr/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/fr/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index d088fd40..00000000 --- a/docs/locale/fr/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/components/forms.po b/docs/locale/fr/LC_MESSAGES/components/forms.po deleted file mode 100644 index 38cc920f..00000000 --- a/docs/locale/fr/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/components/landing_pages.po b/docs/locale/fr/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 04727594..00000000 --- a/docs/locale/fr/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/configuration/settings.po b/docs/locale/fr/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 17ae14c6..00000000 --- a/docs/locale/fr/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/fr/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index b4e7e11d..00000000 --- a/docs/locale/fr/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/fr/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 13f5de6b..00000000 --- a/docs/locale/fr/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/contributing/contributing.po b/docs/locale/fr/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index edfa6b77..00000000 --- a/docs/locale/fr/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/fr/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index a2941c91..00000000 --- a/docs/locale/fr/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/fr/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 71dbd94d..00000000 --- a/docs/locale/fr/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/fr/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index c89c0abe..00000000 --- a/docs/locale/fr/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/fr/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 8acb8582..00000000 --- a/docs/locale/fr/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/fr/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 8f49e293..00000000 --- a/docs/locale/fr/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/index.po b/docs/locale/fr/LC_MESSAGES/index.po deleted file mode 100644 index 84407d6f..00000000 --- a/docs/locale/fr/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/fr/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 2c250c5e..00000000 --- a/docs/locale/fr/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/overview/overview.po b/docs/locale/fr/LC_MESSAGES/overview/overview.po deleted file mode 100644 index abd4faa0..00000000 --- a/docs/locale/fr/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/plugins/twilio.po b/docs/locale/fr/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index aad3df55..00000000 --- a/docs/locale/fr/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/plugins/twitter.po b/docs/locale/fr/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 6d0fca18..00000000 --- a/docs/locale/fr/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/points/points.po b/docs/locale/fr/LC_MESSAGES/points/points.po deleted file mode 100644 index b4dcc0bf..00000000 --- a/docs/locale/fr/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/reports/reports.po b/docs/locale/fr/LC_MESSAGES/reports/reports.po deleted file mode 100644 index f6edc7aa..00000000 --- a/docs/locale/fr/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/fr/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index d2fd6915..00000000 --- a/docs/locale/fr/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/fr/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index d0fc2c1e..00000000 --- a/docs/locale/fr/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/fr/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 00bc8086..00000000 --- a/docs/locale/fr/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/fr/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index de878bad..00000000 --- a/docs/locale/fr/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/set_up/variables.po b/docs/locale/fr/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 01a09e6a..00000000 --- a/docs/locale/fr/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/stages/stages.po b/docs/locale/fr/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 51889fca..00000000 --- a/docs/locale/fr/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/fr/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/fr/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index b234f3fd..00000000 --- a/docs/locale/fr/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (https://www.transifex.com/mautic/teams/33223/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/authentication/authentication.po b/docs/locale/fr_CA/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 9ea46433..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/builders/creating_themes.po b/docs/locale/fr_CA/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 5e4be12e..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/fr_CA/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 848dda29..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/fr_CA/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index af865aeb..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/fr_CA/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index cd339ec5..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/fr_CA/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index f8146227..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/fr_CA/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index d264227f..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/fr_CA/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 7445a83d..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/categories/categories-overview.po b/docs/locale/fr_CA/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index e7f6829f..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/channels/emails.po b/docs/locale/fr_CA/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 272795ee..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/channels/focus_items.po b/docs/locale/fr_CA/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index c0246893..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/fr_CA/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index dd1f6747..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/channels/push_notifications.po b/docs/locale/fr_CA/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 5f215eaa..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/channels/sms.po b/docs/locale/fr_CA/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 3df75e65..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/fr_CA/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 2e0b26e5..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/channels/utm_tags.po b/docs/locale/fr_CA/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index e09bc56d..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/channels/web_notifications.po b/docs/locale/fr_CA/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index f6c4d894..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/companies/companies_overview.po b/docs/locale/fr_CA/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 4a23f33c..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/components/assets.po b/docs/locale/fr_CA/LC_MESSAGES/components/assets.po deleted file mode 100644 index 43850e0c..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/fr_CA/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 858bb92a..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/components/forms.po b/docs/locale/fr_CA/LC_MESSAGES/components/forms.po deleted file mode 100644 index 39077cae..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/components/landing_pages.po b/docs/locale/fr_CA/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 5bb17410..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/configuration/settings.po b/docs/locale/fr_CA/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 7c45d7a0..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/fr_CA/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 2ff147be..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/fr_CA/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 67c611fb..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/contributing/contributing.po b/docs/locale/fr_CA/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index a6c3b03e..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/fr_CA/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index a56405c9..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/fr_CA/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 406673c5..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/fr_CA/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 00f5c111..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/fr_CA/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 5b27ac46..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/fr_CA/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 6d671330..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/index.po b/docs/locale/fr_CA/LC_MESSAGES/index.po deleted file mode 100644 index 9611c08c..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/fr_CA/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 244ec355..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/overview/overview.po b/docs/locale/fr_CA/LC_MESSAGES/overview/overview.po deleted file mode 100644 index ffa1fdf6..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/plugins/twilio.po b/docs/locale/fr_CA/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 33d94a0d..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/plugins/twitter.po b/docs/locale/fr_CA/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index f70d99b6..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/points/points.po b/docs/locale/fr_CA/LC_MESSAGES/points/points.po deleted file mode 100644 index e8c22695..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/reports/reports.po b/docs/locale/fr_CA/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 072780d7..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/fr_CA/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index b734d52e..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/fr_CA/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 4d4c64ea..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/fr_CA/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 71bd8233..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/fr_CA/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index fe757fe6..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/set_up/variables.po b/docs/locale/fr_CA/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 966a2e3b..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/stages/stages.po b/docs/locale/fr_CA/LC_MESSAGES/stages/stages.po deleted file mode 100644 index d95191f3..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/fr_CA/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/fr_CA/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 5cbca17e..00000000 --- a/docs/locale/fr_CA/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: French (Canada) (https://www.transifex.com/mautic/teams/33223/fr_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/authentication/authentication.po b/docs/locale/gl/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 3d232e58..00000000 --- a/docs/locale/gl/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/builders/creating_themes.po b/docs/locale/gl/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 72d7fef1..00000000 --- a/docs/locale/gl/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/gl/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 9ec8270d..00000000 --- a/docs/locale/gl/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/gl/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 8d20d906..00000000 --- a/docs/locale/gl/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/gl/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 889b5af1..00000000 --- a/docs/locale/gl/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/gl/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index a56c60bd..00000000 --- a/docs/locale/gl/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/gl/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index fd114dd5..00000000 --- a/docs/locale/gl/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/gl/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 45026572..00000000 --- a/docs/locale/gl/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/categories/categories-overview.po b/docs/locale/gl/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index a002d6a7..00000000 --- a/docs/locale/gl/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/channels/emails.po b/docs/locale/gl/LC_MESSAGES/channels/emails.po deleted file mode 100644 index c48606c6..00000000 --- a/docs/locale/gl/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/channels/focus_items.po b/docs/locale/gl/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index d843e9e0..00000000 --- a/docs/locale/gl/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/gl/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 704ad292..00000000 --- a/docs/locale/gl/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/channels/push_notifications.po b/docs/locale/gl/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 41a00e39..00000000 --- a/docs/locale/gl/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/channels/sms.po b/docs/locale/gl/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 180959c9..00000000 --- a/docs/locale/gl/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/gl/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index aeea8c02..00000000 --- a/docs/locale/gl/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/channels/utm_tags.po b/docs/locale/gl/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index b3ed5dbb..00000000 --- a/docs/locale/gl/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/channels/web_notifications.po b/docs/locale/gl/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 449cc449..00000000 --- a/docs/locale/gl/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/companies/companies_overview.po b/docs/locale/gl/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index a89360b9..00000000 --- a/docs/locale/gl/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/components/assets.po b/docs/locale/gl/LC_MESSAGES/components/assets.po deleted file mode 100644 index a0edf712..00000000 --- a/docs/locale/gl/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/gl/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index e141b2b9..00000000 --- a/docs/locale/gl/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/components/forms.po b/docs/locale/gl/LC_MESSAGES/components/forms.po deleted file mode 100644 index 476f23a4..00000000 --- a/docs/locale/gl/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/components/landing_pages.po b/docs/locale/gl/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 73b4242a..00000000 --- a/docs/locale/gl/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/configuration/settings.po b/docs/locale/gl/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index d50f748b..00000000 --- a/docs/locale/gl/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/gl/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 7abdcdba..00000000 --- a/docs/locale/gl/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/gl/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index bbe94869..00000000 --- a/docs/locale/gl/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/contributing/contributing.po b/docs/locale/gl/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 71e69ce8..00000000 --- a/docs/locale/gl/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/gl/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index d096975c..00000000 --- a/docs/locale/gl/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/gl/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 185a9c4e..00000000 --- a/docs/locale/gl/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/gl/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index d56a3d7d..00000000 --- a/docs/locale/gl/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/gl/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 39856ab6..00000000 --- a/docs/locale/gl/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/gl/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 5c501be0..00000000 --- a/docs/locale/gl/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/index.po b/docs/locale/gl/LC_MESSAGES/index.po deleted file mode 100644 index 8b0ad796..00000000 --- a/docs/locale/gl/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/gl/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index ac0b7ae6..00000000 --- a/docs/locale/gl/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/overview/overview.po b/docs/locale/gl/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 23a9377b..00000000 --- a/docs/locale/gl/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/plugins/twilio.po b/docs/locale/gl/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 1771a606..00000000 --- a/docs/locale/gl/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/plugins/twitter.po b/docs/locale/gl/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 7344ae13..00000000 --- a/docs/locale/gl/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/points/points.po b/docs/locale/gl/LC_MESSAGES/points/points.po deleted file mode 100644 index e7e1aeb0..00000000 --- a/docs/locale/gl/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/reports/reports.po b/docs/locale/gl/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 98df2ccc..00000000 --- a/docs/locale/gl/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/gl/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 6aabeb5f..00000000 --- a/docs/locale/gl/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/gl/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index e5399302..00000000 --- a/docs/locale/gl/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/gl/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 9c768baf..00000000 --- a/docs/locale/gl/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/gl/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 0ffa013b..00000000 --- a/docs/locale/gl/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/set_up/variables.po b/docs/locale/gl/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 7656b521..00000000 --- a/docs/locale/gl/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/stages/stages.po b/docs/locale/gl/LC_MESSAGES/stages/stages.po deleted file mode 100644 index c672d385..00000000 --- a/docs/locale/gl/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/gl/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/gl/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 7563a13b..00000000 --- a/docs/locale/gl/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Galician (https://www.transifex.com/mautic/teams/33223/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/authentication/authentication.po b/docs/locale/he_IL/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 6b28f56b..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/builders/creating_themes.po b/docs/locale/he_IL/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 09d0246c..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/he_IL/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 7cff904d..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/he_IL/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 048bd209..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/he_IL/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index dec85c37..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/he_IL/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 41059e8d..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/he_IL/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index c0034436..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/he_IL/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index bfbb2f6d..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/categories/categories-overview.po b/docs/locale/he_IL/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 3fc5887a..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/channels/emails.po b/docs/locale/he_IL/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 9a3f8f64..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/channels/focus_items.po b/docs/locale/he_IL/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 4a3d6beb..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/he_IL/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 37fef99c..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/channels/push_notifications.po b/docs/locale/he_IL/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 5b06c3ad..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/channels/sms.po b/docs/locale/he_IL/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 4632cbd0..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/he_IL/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index f5e70e7c..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/channels/utm_tags.po b/docs/locale/he_IL/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 420c648e..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/channels/web_notifications.po b/docs/locale/he_IL/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index fcfae13f..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/companies/companies_overview.po b/docs/locale/he_IL/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 6d281f00..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/components/assets.po b/docs/locale/he_IL/LC_MESSAGES/components/assets.po deleted file mode 100644 index a9e71669..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/he_IL/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 1723a5ee..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/components/forms.po b/docs/locale/he_IL/LC_MESSAGES/components/forms.po deleted file mode 100644 index 6f1cea1a..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/components/landing_pages.po b/docs/locale/he_IL/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 98ede00d..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/configuration/settings.po b/docs/locale/he_IL/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index d5ea6256..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/he_IL/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 8a6fed82..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/he_IL/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 2693d6f9..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/contributing/contributing.po b/docs/locale/he_IL/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 0aab1cf6..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/he_IL/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index c54647b8..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/he_IL/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index cfa9b6f1..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/he_IL/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index e81c9b2d..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/he_IL/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 467b6d2a..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/he_IL/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index bd0029b9..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/index.po b/docs/locale/he_IL/LC_MESSAGES/index.po deleted file mode 100644 index 991fb7b9..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/he_IL/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index ea975f69..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/overview/overview.po b/docs/locale/he_IL/LC_MESSAGES/overview/overview.po deleted file mode 100644 index c3669cd1..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/plugins/twilio.po b/docs/locale/he_IL/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 26655272..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/plugins/twitter.po b/docs/locale/he_IL/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 045cf156..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/points/points.po b/docs/locale/he_IL/LC_MESSAGES/points/points.po deleted file mode 100644 index 2e93750b..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/reports/reports.po b/docs/locale/he_IL/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 04e38cff..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/he_IL/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index dfc43005..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/he_IL/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 89dc08f0..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/he_IL/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 59945ca0..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/he_IL/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 437a48e0..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/set_up/variables.po b/docs/locale/he_IL/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 45703840..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/stages/stages.po b/docs/locale/he_IL/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 10ff20ce..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/he_IL/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/he_IL/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 96765ed0..00000000 --- a/docs/locale/he_IL/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hebrew (Israel) (https://www.transifex.com/mautic/teams/33223/he_IL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/authentication/authentication.po b/docs/locale/hi/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 2e05bbc7..00000000 --- a/docs/locale/hi/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/builders/creating_themes.po b/docs/locale/hi/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index da1c1861..00000000 --- a/docs/locale/hi/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/hi/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 57da3313..00000000 --- a/docs/locale/hi/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/hi/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 3db793a2..00000000 --- a/docs/locale/hi/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/hi/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index ec62cbdd..00000000 --- a/docs/locale/hi/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/hi/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 0b3bc708..00000000 --- a/docs/locale/hi/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/hi/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index a71c8b2b..00000000 --- a/docs/locale/hi/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/hi/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 65bbd9fd..00000000 --- a/docs/locale/hi/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/categories/categories-overview.po b/docs/locale/hi/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index e4a1bc77..00000000 --- a/docs/locale/hi/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/channels/emails.po b/docs/locale/hi/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 3087b1ff..00000000 --- a/docs/locale/hi/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/channels/focus_items.po b/docs/locale/hi/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index b4e83bf6..00000000 --- a/docs/locale/hi/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/hi/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index a8f0731a..00000000 --- a/docs/locale/hi/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/channels/push_notifications.po b/docs/locale/hi/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 13fc8757..00000000 --- a/docs/locale/hi/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/channels/sms.po b/docs/locale/hi/LC_MESSAGES/channels/sms.po deleted file mode 100644 index ba35ebfb..00000000 --- a/docs/locale/hi/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/hi/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index e450dd62..00000000 --- a/docs/locale/hi/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/channels/utm_tags.po b/docs/locale/hi/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 68489e47..00000000 --- a/docs/locale/hi/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/channels/web_notifications.po b/docs/locale/hi/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 2bdcc1c1..00000000 --- a/docs/locale/hi/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/companies/companies_overview.po b/docs/locale/hi/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index bcbfb485..00000000 --- a/docs/locale/hi/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/components/assets.po b/docs/locale/hi/LC_MESSAGES/components/assets.po deleted file mode 100644 index 463ca958..00000000 --- a/docs/locale/hi/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/hi/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 2186ba29..00000000 --- a/docs/locale/hi/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/components/forms.po b/docs/locale/hi/LC_MESSAGES/components/forms.po deleted file mode 100644 index 12a9e2c4..00000000 --- a/docs/locale/hi/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/components/landing_pages.po b/docs/locale/hi/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index ac3475fd..00000000 --- a/docs/locale/hi/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/configuration/settings.po b/docs/locale/hi/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index ce45dea3..00000000 --- a/docs/locale/hi/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/hi/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 22978d2d..00000000 --- a/docs/locale/hi/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/hi/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 74b8e65f..00000000 --- a/docs/locale/hi/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/contributing/contributing.po b/docs/locale/hi/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 8b05cb91..00000000 --- a/docs/locale/hi/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/hi/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 4f0ea5da..00000000 --- a/docs/locale/hi/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/hi/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 22657ede..00000000 --- a/docs/locale/hi/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/hi/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 24f158f5..00000000 --- a/docs/locale/hi/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/hi/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 08b7fa3f..00000000 --- a/docs/locale/hi/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/hi/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 62e5a955..00000000 --- a/docs/locale/hi/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/index.po b/docs/locale/hi/LC_MESSAGES/index.po deleted file mode 100644 index 80afb47e..00000000 --- a/docs/locale/hi/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/hi/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index f7bf3274..00000000 --- a/docs/locale/hi/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/overview/overview.po b/docs/locale/hi/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 53391dbc..00000000 --- a/docs/locale/hi/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/plugins/twilio.po b/docs/locale/hi/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index f27b28e4..00000000 --- a/docs/locale/hi/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/plugins/twitter.po b/docs/locale/hi/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 2afa5623..00000000 --- a/docs/locale/hi/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/points/points.po b/docs/locale/hi/LC_MESSAGES/points/points.po deleted file mode 100644 index 08db1d00..00000000 --- a/docs/locale/hi/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/reports/reports.po b/docs/locale/hi/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 329bd0d3..00000000 --- a/docs/locale/hi/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/hi/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 20ad5f24..00000000 --- a/docs/locale/hi/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/hi/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index e807b2ed..00000000 --- a/docs/locale/hi/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/hi/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 8faad8ab..00000000 --- a/docs/locale/hi/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/hi/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 179da571..00000000 --- a/docs/locale/hi/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/set_up/variables.po b/docs/locale/hi/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 55970722..00000000 --- a/docs/locale/hi/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/stages/stages.po b/docs/locale/hi/LC_MESSAGES/stages/stages.po deleted file mode 100644 index a21e52c2..00000000 --- a/docs/locale/hi/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/hi/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/hi/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index e8cea259..00000000 --- a/docs/locale/hi/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (https://www.transifex.com/mautic/teams/33223/hi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/authentication/authentication.po b/docs/locale/hi_IN/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index fd601c51..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/builders/creating_themes.po b/docs/locale/hi_IN/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index aae85da3..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/hi_IN/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 84dce748..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/hi_IN/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 498cebfd..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/hi_IN/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index cbc0f9d1..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/hi_IN/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index e864c67d..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/hi_IN/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 7264233a..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/hi_IN/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 7b493b81..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/categories/categories-overview.po b/docs/locale/hi_IN/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 5404677a..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/channels/emails.po b/docs/locale/hi_IN/LC_MESSAGES/channels/emails.po deleted file mode 100644 index c4409b7b..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/channels/focus_items.po b/docs/locale/hi_IN/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 9b1e8e3a..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/hi_IN/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 7c309738..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/channels/push_notifications.po b/docs/locale/hi_IN/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 41fd5bd1..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/channels/sms.po b/docs/locale/hi_IN/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 83c82ad8..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/hi_IN/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 1b9b8e5b..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/channels/utm_tags.po b/docs/locale/hi_IN/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 73079cc5..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/channels/web_notifications.po b/docs/locale/hi_IN/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 8e728c02..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/companies/companies_overview.po b/docs/locale/hi_IN/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index c02ea300..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/components/assets.po b/docs/locale/hi_IN/LC_MESSAGES/components/assets.po deleted file mode 100644 index a6a0dae0..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/hi_IN/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index d0d020bf..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/components/forms.po b/docs/locale/hi_IN/LC_MESSAGES/components/forms.po deleted file mode 100644 index bfd31cfa..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/components/landing_pages.po b/docs/locale/hi_IN/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 76acb986..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/configuration/settings.po b/docs/locale/hi_IN/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 41d3e1f4..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/hi_IN/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 9e87ecdc..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/hi_IN/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index e5ca28cf..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/contributing/contributing.po b/docs/locale/hi_IN/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 91402ea2..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/hi_IN/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 9e47ed2c..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/hi_IN/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 98e67f2e..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/hi_IN/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index d23675bb..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/hi_IN/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 91e5ce62..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/hi_IN/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index a9d03f19..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/index.po b/docs/locale/hi_IN/LC_MESSAGES/index.po deleted file mode 100644 index 69509961..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/hi_IN/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index bb784045..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/overview/overview.po b/docs/locale/hi_IN/LC_MESSAGES/overview/overview.po deleted file mode 100644 index f524fda6..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/plugins/twilio.po b/docs/locale/hi_IN/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index f12260aa..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/plugins/twitter.po b/docs/locale/hi_IN/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 56d30ffe..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/points/points.po b/docs/locale/hi_IN/LC_MESSAGES/points/points.po deleted file mode 100644 index 5bff10b4..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/reports/reports.po b/docs/locale/hi_IN/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 2da5fa47..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/hi_IN/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 94ca3c00..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/hi_IN/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index e06eb23e..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/hi_IN/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 111c3483..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/hi_IN/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 3226e13b..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/set_up/variables.po b/docs/locale/hi_IN/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index e4987908..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/stages/stages.po b/docs/locale/hi_IN/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 978de688..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/hi_IN/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/hi_IN/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 34e1d9d1..00000000 --- a/docs/locale/hi_IN/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hindi (India) (https://www.transifex.com/mautic/teams/33223/hi_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/authentication/authentication.po b/docs/locale/hr_HR/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index da605add..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/builders/creating_themes.po b/docs/locale/hr_HR/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index b5aed328..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/hr_HR/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 355ff716..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/hr_HR/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 083e476d..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/hr_HR/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index a5628bff..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/hr_HR/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 92d88c71..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/hr_HR/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 0da4b9ae..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/hr_HR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 264f0686..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/categories/categories-overview.po b/docs/locale/hr_HR/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index f4f87712..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/channels/emails.po b/docs/locale/hr_HR/LC_MESSAGES/channels/emails.po deleted file mode 100644 index d0e8a9ee..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/channels/focus_items.po b/docs/locale/hr_HR/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index adcb6f32..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/hr_HR/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 202ed7d3..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/channels/push_notifications.po b/docs/locale/hr_HR/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index f603a0f4..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/channels/sms.po b/docs/locale/hr_HR/LC_MESSAGES/channels/sms.po deleted file mode 100644 index dfb45127..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/hr_HR/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 42eba7dc..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/channels/utm_tags.po b/docs/locale/hr_HR/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 1ef41905..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/channels/web_notifications.po b/docs/locale/hr_HR/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 48ef187e..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/companies/companies_overview.po b/docs/locale/hr_HR/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 56f5bd59..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/components/assets.po b/docs/locale/hr_HR/LC_MESSAGES/components/assets.po deleted file mode 100644 index 0c48147e..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/hr_HR/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index b7c8885c..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/components/forms.po b/docs/locale/hr_HR/LC_MESSAGES/components/forms.po deleted file mode 100644 index 0f7f22a1..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/components/landing_pages.po b/docs/locale/hr_HR/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 4d856aab..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/configuration/settings.po b/docs/locale/hr_HR/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 67fa73ea..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/hr_HR/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index e3dcc27a..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/hr_HR/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 34f0f9f9..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/contributing/contributing.po b/docs/locale/hr_HR/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 10751f22..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/hr_HR/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 52693b2c..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/hr_HR/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 246c0635..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/hr_HR/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 04a7ff48..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/hr_HR/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index f6d2c828..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/hr_HR/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 66a64d4a..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/index.po b/docs/locale/hr_HR/LC_MESSAGES/index.po deleted file mode 100644 index b1bfb31b..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/hr_HR/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 7851f555..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/overview/overview.po b/docs/locale/hr_HR/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 6bd34ca1..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/plugins/twilio.po b/docs/locale/hr_HR/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index b4db5c66..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/plugins/twitter.po b/docs/locale/hr_HR/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 9702d451..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/points/points.po b/docs/locale/hr_HR/LC_MESSAGES/points/points.po deleted file mode 100644 index 9d0b2df0..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/reports/reports.po b/docs/locale/hr_HR/LC_MESSAGES/reports/reports.po deleted file mode 100644 index f51802b5..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/hr_HR/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index aa656e0c..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/hr_HR/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 7b94780b..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/hr_HR/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 0a8b7757..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/hr_HR/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 7ca3c7e9..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/set_up/variables.po b/docs/locale/hr_HR/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index d30e55e4..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/stages/stages.po b/docs/locale/hr_HR/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 0b44f016..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/hr_HR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/hr_HR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 65257ba6..00000000 --- a/docs/locale/hr_HR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/mautic/teams/33223/hr_HR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/authentication/authentication.po b/docs/locale/hu/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index fd5884d8..00000000 --- a/docs/locale/hu/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/builders/creating_themes.po b/docs/locale/hu/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 551e2034..00000000 --- a/docs/locale/hu/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/hu/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 6eb93f0a..00000000 --- a/docs/locale/hu/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/hu/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 099a9ea8..00000000 --- a/docs/locale/hu/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/hu/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 87421bc2..00000000 --- a/docs/locale/hu/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/hu/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 7317eaa7..00000000 --- a/docs/locale/hu/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/hu/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 6b96cabf..00000000 --- a/docs/locale/hu/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/hu/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index c6fc4177..00000000 --- a/docs/locale/hu/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/categories/categories-overview.po b/docs/locale/hu/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index d0b06f03..00000000 --- a/docs/locale/hu/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/channels/emails.po b/docs/locale/hu/LC_MESSAGES/channels/emails.po deleted file mode 100644 index c59175db..00000000 --- a/docs/locale/hu/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/channels/focus_items.po b/docs/locale/hu/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index ad62b9ea..00000000 --- a/docs/locale/hu/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/hu/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index ed7a6914..00000000 --- a/docs/locale/hu/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/channels/push_notifications.po b/docs/locale/hu/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index fdac1b42..00000000 --- a/docs/locale/hu/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/channels/sms.po b/docs/locale/hu/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 2105ee57..00000000 --- a/docs/locale/hu/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/hu/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 037aae8b..00000000 --- a/docs/locale/hu/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/channels/utm_tags.po b/docs/locale/hu/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 6bd62922..00000000 --- a/docs/locale/hu/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/channels/web_notifications.po b/docs/locale/hu/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index e3ff7f15..00000000 --- a/docs/locale/hu/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/companies/companies_overview.po b/docs/locale/hu/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 26f3291e..00000000 --- a/docs/locale/hu/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/components/assets.po b/docs/locale/hu/LC_MESSAGES/components/assets.po deleted file mode 100644 index 4a12e7c5..00000000 --- a/docs/locale/hu/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/hu/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index d209436d..00000000 --- a/docs/locale/hu/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/components/forms.po b/docs/locale/hu/LC_MESSAGES/components/forms.po deleted file mode 100644 index 49d0eddc..00000000 --- a/docs/locale/hu/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/components/landing_pages.po b/docs/locale/hu/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 87ad2588..00000000 --- a/docs/locale/hu/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/configuration/settings.po b/docs/locale/hu/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 2590380c..00000000 --- a/docs/locale/hu/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/hu/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 5f6dcf2e..00000000 --- a/docs/locale/hu/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/hu/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 361f6ed7..00000000 --- a/docs/locale/hu/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/contributing/contributing.po b/docs/locale/hu/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index ff3c84a4..00000000 --- a/docs/locale/hu/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/hu/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index ed198106..00000000 --- a/docs/locale/hu/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/hu/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 2b5a90c1..00000000 --- a/docs/locale/hu/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/hu/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 1ee6d893..00000000 --- a/docs/locale/hu/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/hu/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 2f42edb4..00000000 --- a/docs/locale/hu/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/hu/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index c05a4772..00000000 --- a/docs/locale/hu/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/index.po b/docs/locale/hu/LC_MESSAGES/index.po deleted file mode 100644 index cf28f279..00000000 --- a/docs/locale/hu/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/hu/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index c5a5dd46..00000000 --- a/docs/locale/hu/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/overview/overview.po b/docs/locale/hu/LC_MESSAGES/overview/overview.po deleted file mode 100644 index ad04b6bc..00000000 --- a/docs/locale/hu/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/plugins/twilio.po b/docs/locale/hu/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 7ec2c52c..00000000 --- a/docs/locale/hu/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/plugins/twitter.po b/docs/locale/hu/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 17666fe8..00000000 --- a/docs/locale/hu/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/points/points.po b/docs/locale/hu/LC_MESSAGES/points/points.po deleted file mode 100644 index b5986dd7..00000000 --- a/docs/locale/hu/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/reports/reports.po b/docs/locale/hu/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 730b4eb5..00000000 --- a/docs/locale/hu/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/hu/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 18d5f8fe..00000000 --- a/docs/locale/hu/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/hu/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 0e1552c5..00000000 --- a/docs/locale/hu/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/hu/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 7a75a959..00000000 --- a/docs/locale/hu/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/hu/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index f9a4afc7..00000000 --- a/docs/locale/hu/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/set_up/variables.po b/docs/locale/hu/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index d88c891c..00000000 --- a/docs/locale/hu/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/stages/stages.po b/docs/locale/hu/LC_MESSAGES/stages/stages.po deleted file mode 100644 index ba40db8e..00000000 --- a/docs/locale/hu/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/hu/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/hu/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 7f05ac53..00000000 --- a/docs/locale/hu/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Hungarian (https://www.transifex.com/mautic/teams/33223/hu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/authentication/authentication.po b/docs/locale/hy/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 4b51bf7a..00000000 --- a/docs/locale/hy/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/builders/creating_themes.po b/docs/locale/hy/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 8553735d..00000000 --- a/docs/locale/hy/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/hy/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index f75f850e..00000000 --- a/docs/locale/hy/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/hy/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 9744f5f4..00000000 --- a/docs/locale/hy/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/hy/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 468f3948..00000000 --- a/docs/locale/hy/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/hy/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 47b8b652..00000000 --- a/docs/locale/hy/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/hy/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 03c53bef..00000000 --- a/docs/locale/hy/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/hy/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 86b3ee40..00000000 --- a/docs/locale/hy/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/categories/categories-overview.po b/docs/locale/hy/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 6181fc9c..00000000 --- a/docs/locale/hy/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/channels/emails.po b/docs/locale/hy/LC_MESSAGES/channels/emails.po deleted file mode 100644 index ffe1648c..00000000 --- a/docs/locale/hy/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/channels/focus_items.po b/docs/locale/hy/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index d7df3de4..00000000 --- a/docs/locale/hy/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/hy/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index bcc790c1..00000000 --- a/docs/locale/hy/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/channels/push_notifications.po b/docs/locale/hy/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index f4e8a3a9..00000000 --- a/docs/locale/hy/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/channels/sms.po b/docs/locale/hy/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 61284ac9..00000000 --- a/docs/locale/hy/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/hy/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 2abeb790..00000000 --- a/docs/locale/hy/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/channels/utm_tags.po b/docs/locale/hy/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index d4d868f3..00000000 --- a/docs/locale/hy/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/channels/web_notifications.po b/docs/locale/hy/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index ece6b0c8..00000000 --- a/docs/locale/hy/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/companies/companies_overview.po b/docs/locale/hy/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 6727ad82..00000000 --- a/docs/locale/hy/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/components/assets.po b/docs/locale/hy/LC_MESSAGES/components/assets.po deleted file mode 100644 index 8035b8ba..00000000 --- a/docs/locale/hy/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/hy/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 57382cbc..00000000 --- a/docs/locale/hy/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/components/forms.po b/docs/locale/hy/LC_MESSAGES/components/forms.po deleted file mode 100644 index 370d7b58..00000000 --- a/docs/locale/hy/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/components/landing_pages.po b/docs/locale/hy/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 968b853e..00000000 --- a/docs/locale/hy/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/configuration/settings.po b/docs/locale/hy/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 7aadca74..00000000 --- a/docs/locale/hy/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/hy/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 92f7bd53..00000000 --- a/docs/locale/hy/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/hy/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 62ff7f0b..00000000 --- a/docs/locale/hy/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/contributing/contributing.po b/docs/locale/hy/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index cf61c8c6..00000000 --- a/docs/locale/hy/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/hy/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 649681d1..00000000 --- a/docs/locale/hy/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/hy/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index d4688f76..00000000 --- a/docs/locale/hy/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/hy/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 42bb89c7..00000000 --- a/docs/locale/hy/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/hy/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 24a7bcf8..00000000 --- a/docs/locale/hy/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/hy/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 06d76ed6..00000000 --- a/docs/locale/hy/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/index.po b/docs/locale/hy/LC_MESSAGES/index.po deleted file mode 100644 index 06b9e172..00000000 --- a/docs/locale/hy/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/hy/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 932ae07f..00000000 --- a/docs/locale/hy/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/overview/overview.po b/docs/locale/hy/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 26c21466..00000000 --- a/docs/locale/hy/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/plugins/twilio.po b/docs/locale/hy/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index f026db23..00000000 --- a/docs/locale/hy/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/plugins/twitter.po b/docs/locale/hy/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 8e09cf2e..00000000 --- a/docs/locale/hy/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/points/points.po b/docs/locale/hy/LC_MESSAGES/points/points.po deleted file mode 100644 index ec454df1..00000000 --- a/docs/locale/hy/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/reports/reports.po b/docs/locale/hy/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 6cca190e..00000000 --- a/docs/locale/hy/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/hy/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 93828131..00000000 --- a/docs/locale/hy/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/hy/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index dee9224a..00000000 --- a/docs/locale/hy/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/hy/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index b34db70a..00000000 --- a/docs/locale/hy/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/hy/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 9eb7310d..00000000 --- a/docs/locale/hy/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/set_up/variables.po b/docs/locale/hy/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index d60512ac..00000000 --- a/docs/locale/hy/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/stages/stages.po b/docs/locale/hy/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 183608b5..00000000 --- a/docs/locale/hy/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/hy/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/hy/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 47d51c55..00000000 --- a/docs/locale/hy/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Armenian (https://www.transifex.com/mautic/teams/33223/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/authentication/authentication.po b/docs/locale/id_ID/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 502518ec..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/builders/creating_themes.po b/docs/locale/id_ID/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 7ded1a97..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/id_ID/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index d4662f13..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/id_ID/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 8a9a4237..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/id_ID/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index fce1cf14..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/id_ID/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index c7fb27d9..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/id_ID/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 68ff2be5..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/id_ID/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index cb1dc744..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/categories/categories-overview.po b/docs/locale/id_ID/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 5b0d8cf5..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/channels/emails.po b/docs/locale/id_ID/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 03b7f8a2..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/channels/focus_items.po b/docs/locale/id_ID/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index d95cf18f..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/id_ID/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 4670fc8e..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/channels/push_notifications.po b/docs/locale/id_ID/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 2bfada3e..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/channels/sms.po b/docs/locale/id_ID/LC_MESSAGES/channels/sms.po deleted file mode 100644 index e4a3c85f..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/id_ID/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 43900dac..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/channels/utm_tags.po b/docs/locale/id_ID/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 23b10afe..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/channels/web_notifications.po b/docs/locale/id_ID/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 7a992b19..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/companies/companies_overview.po b/docs/locale/id_ID/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index a6e596e7..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/components/assets.po b/docs/locale/id_ID/LC_MESSAGES/components/assets.po deleted file mode 100644 index 91b193fe..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/id_ID/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 6c9cfae5..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/components/forms.po b/docs/locale/id_ID/LC_MESSAGES/components/forms.po deleted file mode 100644 index d80f342f..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/components/landing_pages.po b/docs/locale/id_ID/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 87f02d66..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/configuration/settings.po b/docs/locale/id_ID/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 496aeb21..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/id_ID/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 29c7e6ae..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/id_ID/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index f01b0055..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/contributing/contributing.po b/docs/locale/id_ID/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 07ac8121..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/id_ID/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 79d6ad6f..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/id_ID/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 6dbf1f56..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/id_ID/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index cf7c0425..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/id_ID/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 9d0246ee..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/id_ID/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index f913e32f..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/index.po b/docs/locale/id_ID/LC_MESSAGES/index.po deleted file mode 100644 index eb3cdbe4..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/id_ID/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index bbb3b911..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/overview/overview.po b/docs/locale/id_ID/LC_MESSAGES/overview/overview.po deleted file mode 100644 index d92d7803..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/plugins/twilio.po b/docs/locale/id_ID/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 7d148f4c..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/plugins/twitter.po b/docs/locale/id_ID/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index e1069dc5..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/points/points.po b/docs/locale/id_ID/LC_MESSAGES/points/points.po deleted file mode 100644 index e4e4f7c6..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/reports/reports.po b/docs/locale/id_ID/LC_MESSAGES/reports/reports.po deleted file mode 100644 index b632654d..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/id_ID/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index c3dcc56b..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/id_ID/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 7000db89..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/id_ID/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 6ced0367..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/id_ID/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 3f1005e4..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/set_up/variables.po b/docs/locale/id_ID/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 21ec87b6..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/stages/stages.po b/docs/locale/id_ID/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 8e27b5c1..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/id_ID/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/id_ID/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 3ef13311..00000000 --- a/docs/locale/id_ID/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/mautic/teams/33223/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/authentication/authentication.po b/docs/locale/it/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 51ac4a2a..00000000 --- a/docs/locale/it/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/builders/creating_themes.po b/docs/locale/it/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 4c71500b..00000000 --- a/docs/locale/it/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/it/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index f4f13547..00000000 --- a/docs/locale/it/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/it/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index e1a5f07d..00000000 --- a/docs/locale/it/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/it/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index c335102b..00000000 --- a/docs/locale/it/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/it/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index eb6b723a..00000000 --- a/docs/locale/it/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/it/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index c608c75e..00000000 --- a/docs/locale/it/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/it/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 686f0856..00000000 --- a/docs/locale/it/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/categories/categories-overview.po b/docs/locale/it/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 1419bbb0..00000000 --- a/docs/locale/it/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/channels/emails.po b/docs/locale/it/LC_MESSAGES/channels/emails.po deleted file mode 100644 index dc3b7332..00000000 --- a/docs/locale/it/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/channels/focus_items.po b/docs/locale/it/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 1e55d65c..00000000 --- a/docs/locale/it/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/it/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index c44caffa..00000000 --- a/docs/locale/it/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/channels/push_notifications.po b/docs/locale/it/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 762e5470..00000000 --- a/docs/locale/it/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/channels/sms.po b/docs/locale/it/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 925f5d9b..00000000 --- a/docs/locale/it/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/it/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 0979481b..00000000 --- a/docs/locale/it/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/channels/utm_tags.po b/docs/locale/it/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index f5b41ed5..00000000 --- a/docs/locale/it/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/channels/web_notifications.po b/docs/locale/it/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 444d596c..00000000 --- a/docs/locale/it/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/companies/companies_overview.po b/docs/locale/it/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 3352b695..00000000 --- a/docs/locale/it/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/components/assets.po b/docs/locale/it/LC_MESSAGES/components/assets.po deleted file mode 100644 index 846a1219..00000000 --- a/docs/locale/it/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/it/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 4203f7a4..00000000 --- a/docs/locale/it/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/components/forms.po b/docs/locale/it/LC_MESSAGES/components/forms.po deleted file mode 100644 index 63b4c91e..00000000 --- a/docs/locale/it/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/components/landing_pages.po b/docs/locale/it/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index ddc1927b..00000000 --- a/docs/locale/it/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/configuration/settings.po b/docs/locale/it/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 21af7ee5..00000000 --- a/docs/locale/it/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/it/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index b709d49d..00000000 --- a/docs/locale/it/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/it/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 8993296f..00000000 --- a/docs/locale/it/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/contributing/contributing.po b/docs/locale/it/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 4bb3039e..00000000 --- a/docs/locale/it/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/it/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 38a07fea..00000000 --- a/docs/locale/it/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/it/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 04c4381d..00000000 --- a/docs/locale/it/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/it/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index a7896b20..00000000 --- a/docs/locale/it/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/it/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index e16ad78d..00000000 --- a/docs/locale/it/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/it/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index ef872976..00000000 --- a/docs/locale/it/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/index.po b/docs/locale/it/LC_MESSAGES/index.po deleted file mode 100644 index 72b5fa34..00000000 --- a/docs/locale/it/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/it/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 89032d59..00000000 --- a/docs/locale/it/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/overview/overview.po b/docs/locale/it/LC_MESSAGES/overview/overview.po deleted file mode 100644 index a4f2590d..00000000 --- a/docs/locale/it/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/plugins/twilio.po b/docs/locale/it/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 0e194be5..00000000 --- a/docs/locale/it/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/plugins/twitter.po b/docs/locale/it/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 747613b0..00000000 --- a/docs/locale/it/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/points/points.po b/docs/locale/it/LC_MESSAGES/points/points.po deleted file mode 100644 index 64dacc37..00000000 --- a/docs/locale/it/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/reports/reports.po b/docs/locale/it/LC_MESSAGES/reports/reports.po deleted file mode 100644 index ecdd2436..00000000 --- a/docs/locale/it/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/it/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index e318b556..00000000 --- a/docs/locale/it/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/it/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index e7a412ba..00000000 --- a/docs/locale/it/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/it/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index e9b58917..00000000 --- a/docs/locale/it/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/it/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 89722339..00000000 --- a/docs/locale/it/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/set_up/variables.po b/docs/locale/it/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index feb78f07..00000000 --- a/docs/locale/it/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/stages/stages.po b/docs/locale/it/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 23de2612..00000000 --- a/docs/locale/it/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/it/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/it/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 9c6eac3c..00000000 --- a/docs/locale/it/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (https://www.transifex.com/mautic/teams/33223/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/authentication/authentication.po b/docs/locale/it_CH/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index ac712986..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/builders/creating_themes.po b/docs/locale/it_CH/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index beafa06e..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/it_CH/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 474eb25d..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/it_CH/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index a1e6b434..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/it_CH/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index e137ced3..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/it_CH/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 6261c358..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/it_CH/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 2c060a6a..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/it_CH/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index c3b45951..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/categories/categories-overview.po b/docs/locale/it_CH/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 1c4e5e7a..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/channels/emails.po b/docs/locale/it_CH/LC_MESSAGES/channels/emails.po deleted file mode 100644 index ab8cabdc..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/channels/focus_items.po b/docs/locale/it_CH/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index b108a76f..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/it_CH/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 1c7c1eed..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/channels/push_notifications.po b/docs/locale/it_CH/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index bb413f3f..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/channels/sms.po b/docs/locale/it_CH/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 1a53efc6..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/it_CH/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 40f085f9..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/channels/utm_tags.po b/docs/locale/it_CH/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 3ee1e9fe..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/channels/web_notifications.po b/docs/locale/it_CH/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 3569523c..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/companies/companies_overview.po b/docs/locale/it_CH/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index c6a1f792..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/components/assets.po b/docs/locale/it_CH/LC_MESSAGES/components/assets.po deleted file mode 100644 index 2e44cad7..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/it_CH/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 78428b47..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/components/forms.po b/docs/locale/it_CH/LC_MESSAGES/components/forms.po deleted file mode 100644 index 681e608b..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/components/landing_pages.po b/docs/locale/it_CH/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 00281cfe..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/configuration/settings.po b/docs/locale/it_CH/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 6170568e..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/it_CH/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 80d12ed3..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/it_CH/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index ecce76aa..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/contributing/contributing.po b/docs/locale/it_CH/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 8e8b788d..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/it_CH/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index f889c285..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/it_CH/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 28b41b8c..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/it_CH/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 560e3aab..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/it_CH/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 2856539a..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/it_CH/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index abd6618b..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/index.po b/docs/locale/it_CH/LC_MESSAGES/index.po deleted file mode 100644 index 2defd4a5..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/it_CH/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 9cf39b31..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/overview/overview.po b/docs/locale/it_CH/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 1be15520..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/plugins/twilio.po b/docs/locale/it_CH/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 6df35d98..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/plugins/twitter.po b/docs/locale/it_CH/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 70c8075c..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/points/points.po b/docs/locale/it_CH/LC_MESSAGES/points/points.po deleted file mode 100644 index 5d6025dd..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/reports/reports.po b/docs/locale/it_CH/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 6c0b3ee2..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/it_CH/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index cb14ac56..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/it_CH/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 85cda3e7..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/it_CH/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 4686ce44..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/it_CH/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 5fef1b3e..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/set_up/variables.po b/docs/locale/it_CH/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 9fa9abf8..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/stages/stages.po b/docs/locale/it_CH/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 4babc6d1..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/it_CH/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/it_CH/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 56c6da79..00000000 --- a/docs/locale/it_CH/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Switzerland) (https://www.transifex.com/mautic/teams/33223/it_CH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_CH\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/authentication/authentication.po b/docs/locale/it_IT/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index b22fec1e..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/builders/creating_themes.po b/docs/locale/it_IT/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index b086118d..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/it_IT/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index b6be8d2c..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/it_IT/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 331ae3b4..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/it_IT/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 4ccceb45..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/it_IT/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 7a6263d2..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/it_IT/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 45f241cf..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/it_IT/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 50d20766..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/categories/categories-overview.po b/docs/locale/it_IT/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 9b1c4b52..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/channels/emails.po b/docs/locale/it_IT/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 185c7663..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/channels/focus_items.po b/docs/locale/it_IT/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 5edd268d..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/it_IT/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 265c18e6..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/channels/push_notifications.po b/docs/locale/it_IT/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 9a96e149..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/channels/sms.po b/docs/locale/it_IT/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 86ec46b4..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/it_IT/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 2a512499..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/channels/utm_tags.po b/docs/locale/it_IT/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 943bc23e..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/channels/web_notifications.po b/docs/locale/it_IT/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 8e5fc99b..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/companies/companies_overview.po b/docs/locale/it_IT/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index cd9d1688..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/components/assets.po b/docs/locale/it_IT/LC_MESSAGES/components/assets.po deleted file mode 100644 index 0f609dfa..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/it_IT/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 710a1492..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/components/forms.po b/docs/locale/it_IT/LC_MESSAGES/components/forms.po deleted file mode 100644 index 6d673268..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/components/landing_pages.po b/docs/locale/it_IT/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 5398c47a..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/configuration/settings.po b/docs/locale/it_IT/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 89b64dae..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/it_IT/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 663b2c26..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/it_IT/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 36068bbc..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/contributing/contributing.po b/docs/locale/it_IT/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 15f7e38a..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/it_IT/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index d7bcfa1d..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/it_IT/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 94a998c0..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/it_IT/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index f65bda54..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/it_IT/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 0971768e..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/it_IT/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 078e03ab..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/index.po b/docs/locale/it_IT/LC_MESSAGES/index.po deleted file mode 100644 index 6efeeae1..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/it_IT/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 5c786fd1..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/overview/overview.po b/docs/locale/it_IT/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 22c41f02..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/plugins/twilio.po b/docs/locale/it_IT/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 5d392ffc..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/plugins/twitter.po b/docs/locale/it_IT/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 5c2f2e5a..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/points/points.po b/docs/locale/it_IT/LC_MESSAGES/points/points.po deleted file mode 100644 index ebb47994..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/reports/reports.po b/docs/locale/it_IT/LC_MESSAGES/reports/reports.po deleted file mode 100644 index bbe68deb..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/it_IT/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 7068b084..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/it_IT/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 68a3836d..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/it_IT/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 6f71769e..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/it_IT/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 4b04b072..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/set_up/variables.po b/docs/locale/it_IT/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index c3d532af..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/stages/stages.po b/docs/locale/it_IT/LC_MESSAGES/stages/stages.po deleted file mode 100644 index f1f606aa..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/it_IT/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/it_IT/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index a7d70940..00000000 --- a/docs/locale/it_IT/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Italian (Italy) (https://www.transifex.com/mautic/teams/33223/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/authentication/authentication.po b/docs/locale/ja/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 772dae9b..00000000 --- a/docs/locale/ja/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/builders/creating_themes.po b/docs/locale/ja/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index e2e3a001..00000000 --- a/docs/locale/ja/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/ja/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 3f248227..00000000 --- a/docs/locale/ja/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/ja/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 51d64ab7..00000000 --- a/docs/locale/ja/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/ja/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 8b87c156..00000000 --- a/docs/locale/ja/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/ja/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 9cae4210..00000000 --- a/docs/locale/ja/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/ja/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 55dab610..00000000 --- a/docs/locale/ja/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/ja/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 3883709b..00000000 --- a/docs/locale/ja/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/categories/categories-overview.po b/docs/locale/ja/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 2147a3e4..00000000 --- a/docs/locale/ja/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/channels/emails.po b/docs/locale/ja/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 24897d78..00000000 --- a/docs/locale/ja/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/channels/focus_items.po b/docs/locale/ja/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 9bab15f8..00000000 --- a/docs/locale/ja/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/ja/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index c5a55eae..00000000 --- a/docs/locale/ja/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/channels/push_notifications.po b/docs/locale/ja/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index ea9d28d4..00000000 --- a/docs/locale/ja/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/channels/sms.po b/docs/locale/ja/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 67b4c245..00000000 --- a/docs/locale/ja/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/ja/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 80c1f359..00000000 --- a/docs/locale/ja/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/channels/utm_tags.po b/docs/locale/ja/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 7211b101..00000000 --- a/docs/locale/ja/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/channels/web_notifications.po b/docs/locale/ja/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 5354ef07..00000000 --- a/docs/locale/ja/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/companies/companies_overview.po b/docs/locale/ja/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 184c44ba..00000000 --- a/docs/locale/ja/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/components/assets.po b/docs/locale/ja/LC_MESSAGES/components/assets.po deleted file mode 100644 index d91f8b63..00000000 --- a/docs/locale/ja/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/ja/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 4fab6088..00000000 --- a/docs/locale/ja/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/components/forms.po b/docs/locale/ja/LC_MESSAGES/components/forms.po deleted file mode 100644 index f1267867..00000000 --- a/docs/locale/ja/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/components/landing_pages.po b/docs/locale/ja/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 20691091..00000000 --- a/docs/locale/ja/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/configuration/settings.po b/docs/locale/ja/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 9e153aa0..00000000 --- a/docs/locale/ja/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/ja/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 3f637462..00000000 --- a/docs/locale/ja/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/ja/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 03081421..00000000 --- a/docs/locale/ja/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/contributing/contributing.po b/docs/locale/ja/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index e729d1f7..00000000 --- a/docs/locale/ja/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/ja/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 55d25db7..00000000 --- a/docs/locale/ja/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/ja/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 32116e3e..00000000 --- a/docs/locale/ja/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/ja/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index d0011154..00000000 --- a/docs/locale/ja/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/ja/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 90b38145..00000000 --- a/docs/locale/ja/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/ja/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 68ba1437..00000000 --- a/docs/locale/ja/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/index.po b/docs/locale/ja/LC_MESSAGES/index.po deleted file mode 100644 index 0418295a..00000000 --- a/docs/locale/ja/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/ja/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 4b5a1dbb..00000000 --- a/docs/locale/ja/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/overview/overview.po b/docs/locale/ja/LC_MESSAGES/overview/overview.po deleted file mode 100644 index c5064a11..00000000 --- a/docs/locale/ja/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/plugins/twilio.po b/docs/locale/ja/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index ba33b0c4..00000000 --- a/docs/locale/ja/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/plugins/twitter.po b/docs/locale/ja/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 4d5ea304..00000000 --- a/docs/locale/ja/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/points/points.po b/docs/locale/ja/LC_MESSAGES/points/points.po deleted file mode 100644 index 486365dd..00000000 --- a/docs/locale/ja/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/reports/reports.po b/docs/locale/ja/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 988a9590..00000000 --- a/docs/locale/ja/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/ja/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 19d1e375..00000000 --- a/docs/locale/ja/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/ja/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index f513b020..00000000 --- a/docs/locale/ja/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/ja/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index fbeaf27f..00000000 --- a/docs/locale/ja/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/ja/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index b89f99b3..00000000 --- a/docs/locale/ja/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/set_up/variables.po b/docs/locale/ja/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 3bfab6f4..00000000 --- a/docs/locale/ja/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/stages/stages.po b/docs/locale/ja/LC_MESSAGES/stages/stages.po deleted file mode 100644 index e89928f3..00000000 --- a/docs/locale/ja/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/ja/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/ja/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index e2865472..00000000 --- a/docs/locale/ja/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (https://www.transifex.com/mautic/teams/33223/ja/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/authentication/authentication.po b/docs/locale/ja_JP/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 606bd98f..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/builders/creating_themes.po b/docs/locale/ja_JP/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 9f7a0653..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/ja_JP/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 40666e64..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/ja_JP/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 34c5fb1b..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/ja_JP/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 254a74c7..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/ja_JP/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index e7ae3f18..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/ja_JP/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 4a13a9bc..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/ja_JP/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 659a6c84..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/categories/categories-overview.po b/docs/locale/ja_JP/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 23da1ce7..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/channels/emails.po b/docs/locale/ja_JP/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 467e5d84..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/channels/focus_items.po b/docs/locale/ja_JP/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 18630df1..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/ja_JP/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index b3dc5c4b..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/channels/push_notifications.po b/docs/locale/ja_JP/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 2d8e5351..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/channels/sms.po b/docs/locale/ja_JP/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 54fde176..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/ja_JP/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 941e72b8..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/channels/utm_tags.po b/docs/locale/ja_JP/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index adc63582..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/channels/web_notifications.po b/docs/locale/ja_JP/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 8d68641d..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/companies/companies_overview.po b/docs/locale/ja_JP/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index d1f8b4b1..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/components/assets.po b/docs/locale/ja_JP/LC_MESSAGES/components/assets.po deleted file mode 100644 index 3be19e20..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/ja_JP/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 3140993a..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/components/forms.po b/docs/locale/ja_JP/LC_MESSAGES/components/forms.po deleted file mode 100644 index c318d67b..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/components/landing_pages.po b/docs/locale/ja_JP/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 4857eaa8..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/configuration/settings.po b/docs/locale/ja_JP/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index cfecaf87..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/ja_JP/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index acf0484c..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/ja_JP/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index a3b9a9b6..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/contributing/contributing.po b/docs/locale/ja_JP/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 5307e118..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/ja_JP/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index a13c578d..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/ja_JP/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 339fa34f..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/ja_JP/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 1f52a0de..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/ja_JP/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 688ac556..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/ja_JP/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 08f5b1d1..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/index.po b/docs/locale/ja_JP/LC_MESSAGES/index.po deleted file mode 100644 index 80f10d35..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/ja_JP/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 9cb59c4c..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/overview/overview.po b/docs/locale/ja_JP/LC_MESSAGES/overview/overview.po deleted file mode 100644 index aef51bff..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/plugins/twilio.po b/docs/locale/ja_JP/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 39d1b936..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/plugins/twitter.po b/docs/locale/ja_JP/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index cd7d5b70..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/points/points.po b/docs/locale/ja_JP/LC_MESSAGES/points/points.po deleted file mode 100644 index 56088ec1..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/reports/reports.po b/docs/locale/ja_JP/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 078ca46e..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/ja_JP/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 3f6b92b7..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/ja_JP/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 53ea407b..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/ja_JP/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 7e87d313..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/ja_JP/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 7fec8776..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/set_up/variables.po b/docs/locale/ja_JP/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 66f34cea..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/stages/stages.po b/docs/locale/ja_JP/LC_MESSAGES/stages/stages.po deleted file mode 100644 index ac5b1e7c..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/ja_JP/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/ja_JP/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 23154557..00000000 --- a/docs/locale/ja_JP/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/mautic/teams/33223/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/authentication/authentication.po b/docs/locale/ko_KR/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 6d85a013..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/builders/creating_themes.po b/docs/locale/ko_KR/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 55179331..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/ko_KR/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index cd80fa8c..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/ko_KR/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index a9ea6307..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/ko_KR/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index f12e73ba..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/ko_KR/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 47a1f554..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/ko_KR/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index f6abd2c3..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/ko_KR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 0da038d0..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/categories/categories-overview.po b/docs/locale/ko_KR/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index b3a399e9..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/channels/emails.po b/docs/locale/ko_KR/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 72e06201..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/channels/focus_items.po b/docs/locale/ko_KR/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index d5dc478b..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/ko_KR/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index fe217bd1..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/channels/push_notifications.po b/docs/locale/ko_KR/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 02fcc302..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/channels/sms.po b/docs/locale/ko_KR/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 61b134d6..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/ko_KR/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 5af9c5c4..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/channels/utm_tags.po b/docs/locale/ko_KR/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 52ec483c..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/channels/web_notifications.po b/docs/locale/ko_KR/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 081a02a6..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/companies/companies_overview.po b/docs/locale/ko_KR/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 75bff5a4..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/components/assets.po b/docs/locale/ko_KR/LC_MESSAGES/components/assets.po deleted file mode 100644 index 665eddc9..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/ko_KR/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 14e833a7..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/components/forms.po b/docs/locale/ko_KR/LC_MESSAGES/components/forms.po deleted file mode 100644 index 3f1b6376..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/components/landing_pages.po b/docs/locale/ko_KR/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index ac6a93b5..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/configuration/settings.po b/docs/locale/ko_KR/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 7d789de6..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/ko_KR/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 7da7e014..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/ko_KR/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 235b7a6f..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/contributing/contributing.po b/docs/locale/ko_KR/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index d28b8d98..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/ko_KR/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 1dc54fd3..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/ko_KR/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index c10e28ba..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/ko_KR/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index b971fc26..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/ko_KR/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index aa3ad5bd..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/ko_KR/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 51283ed5..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/index.po b/docs/locale/ko_KR/LC_MESSAGES/index.po deleted file mode 100644 index 6962e7de..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/ko_KR/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index d2c8c666..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/overview/overview.po b/docs/locale/ko_KR/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 74ff86b3..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/plugins/twilio.po b/docs/locale/ko_KR/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 4ceb7b78..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/plugins/twitter.po b/docs/locale/ko_KR/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index b08c6921..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/points/points.po b/docs/locale/ko_KR/LC_MESSAGES/points/points.po deleted file mode 100644 index cb988bf5..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/reports/reports.po b/docs/locale/ko_KR/LC_MESSAGES/reports/reports.po deleted file mode 100644 index edfe16ac..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/ko_KR/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 4eb5bb16..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/ko_KR/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 83b2114e..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/ko_KR/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 7c1f320c..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/ko_KR/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index b36e6702..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/set_up/variables.po b/docs/locale/ko_KR/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 2473be3e..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/stages/stages.po b/docs/locale/ko_KR/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 874e6381..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/ko_KR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/ko_KR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 24cc91df..00000000 --- a/docs/locale/ko_KR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Korean (Korea) (https://www.transifex.com/mautic/teams/33223/ko_KR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/authentication/authentication.po b/docs/locale/lt_LT/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index cc2af3b0..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/builders/creating_themes.po b/docs/locale/lt_LT/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index cb509430..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/lt_LT/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index c0a02c4d..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/lt_LT/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index d5d69640..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/lt_LT/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 9b4b0e8a..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/lt_LT/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 5937a2af..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/lt_LT/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index f16626b8..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/lt_LT/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 330ceedb..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/categories/categories-overview.po b/docs/locale/lt_LT/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 8b877214..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/channels/emails.po b/docs/locale/lt_LT/LC_MESSAGES/channels/emails.po deleted file mode 100644 index ea9a6441..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/channels/focus_items.po b/docs/locale/lt_LT/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index cd052281..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/lt_LT/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index c7672698..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/channels/push_notifications.po b/docs/locale/lt_LT/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index e9e43c1f..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/channels/sms.po b/docs/locale/lt_LT/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 3306626e..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/lt_LT/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index ec1d791e..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/channels/utm_tags.po b/docs/locale/lt_LT/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 4d8490ae..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/channels/web_notifications.po b/docs/locale/lt_LT/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index a29c5f97..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/companies/companies_overview.po b/docs/locale/lt_LT/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index c69c086f..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/components/assets.po b/docs/locale/lt_LT/LC_MESSAGES/components/assets.po deleted file mode 100644 index 3409a31d..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/lt_LT/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index efbd83a4..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/components/forms.po b/docs/locale/lt_LT/LC_MESSAGES/components/forms.po deleted file mode 100644 index 030b4a1d..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/components/landing_pages.po b/docs/locale/lt_LT/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 813efdcc..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/configuration/settings.po b/docs/locale/lt_LT/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 27039804..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/lt_LT/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index cc873aa7..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/lt_LT/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index b1e5ca03..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/contributing/contributing.po b/docs/locale/lt_LT/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 3ac7098f..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/lt_LT/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index a7f1dbe1..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/lt_LT/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 60582c2b..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/lt_LT/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index c38776e7..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/lt_LT/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 4b0bce00..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/lt_LT/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 95fe8058..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/index.po b/docs/locale/lt_LT/LC_MESSAGES/index.po deleted file mode 100644 index 1a02d3d9..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/lt_LT/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index e48f2e5d..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/overview/overview.po b/docs/locale/lt_LT/LC_MESSAGES/overview/overview.po deleted file mode 100644 index bdab39e0..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/plugins/twilio.po b/docs/locale/lt_LT/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index c97e5533..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/plugins/twitter.po b/docs/locale/lt_LT/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 189b5dc9..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/points/points.po b/docs/locale/lt_LT/LC_MESSAGES/points/points.po deleted file mode 100644 index 3136089d..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/reports/reports.po b/docs/locale/lt_LT/LC_MESSAGES/reports/reports.po deleted file mode 100644 index e36f8b93..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/lt_LT/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 97005ac1..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/lt_LT/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index a60bf036..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/lt_LT/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 3376bed9..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/lt_LT/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 0c176504..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/set_up/variables.po b/docs/locale/lt_LT/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index c0887908..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/stages/stages.po b/docs/locale/lt_LT/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 9cdc9658..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/lt_LT/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/lt_LT/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index de2a139e..00000000 --- a/docs/locale/lt_LT/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/mautic/teams/33223/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/authentication/authentication.po b/docs/locale/lv/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 45e86614..00000000 --- a/docs/locale/lv/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/builders/creating_themes.po b/docs/locale/lv/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 62f93333..00000000 --- a/docs/locale/lv/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/lv/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index ee81e8f0..00000000 --- a/docs/locale/lv/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/lv/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 6d1f790e..00000000 --- a/docs/locale/lv/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/lv/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 23f693ac..00000000 --- a/docs/locale/lv/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/lv/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 0bddefd7..00000000 --- a/docs/locale/lv/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/lv/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 61107c2d..00000000 --- a/docs/locale/lv/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/lv/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 96e12927..00000000 --- a/docs/locale/lv/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/categories/categories-overview.po b/docs/locale/lv/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 4e1129ef..00000000 --- a/docs/locale/lv/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/channels/emails.po b/docs/locale/lv/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 5d90b47e..00000000 --- a/docs/locale/lv/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/channels/focus_items.po b/docs/locale/lv/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index d88bde16..00000000 --- a/docs/locale/lv/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/lv/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 4b097c8d..00000000 --- a/docs/locale/lv/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/channels/push_notifications.po b/docs/locale/lv/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 3a78330b..00000000 --- a/docs/locale/lv/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/channels/sms.po b/docs/locale/lv/LC_MESSAGES/channels/sms.po deleted file mode 100644 index e06b75ff..00000000 --- a/docs/locale/lv/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/lv/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index df7f82ba..00000000 --- a/docs/locale/lv/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/channels/utm_tags.po b/docs/locale/lv/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 6632a45d..00000000 --- a/docs/locale/lv/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/channels/web_notifications.po b/docs/locale/lv/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index a745f986..00000000 --- a/docs/locale/lv/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/companies/companies_overview.po b/docs/locale/lv/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index dd371c05..00000000 --- a/docs/locale/lv/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/components/assets.po b/docs/locale/lv/LC_MESSAGES/components/assets.po deleted file mode 100644 index 0c0e0d59..00000000 --- a/docs/locale/lv/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/lv/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index d7527000..00000000 --- a/docs/locale/lv/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/components/forms.po b/docs/locale/lv/LC_MESSAGES/components/forms.po deleted file mode 100644 index 80e48327..00000000 --- a/docs/locale/lv/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/components/landing_pages.po b/docs/locale/lv/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 65353a53..00000000 --- a/docs/locale/lv/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/configuration/settings.po b/docs/locale/lv/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 22dd0e7f..00000000 --- a/docs/locale/lv/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/lv/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 9b89e344..00000000 --- a/docs/locale/lv/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/lv/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 5a516955..00000000 --- a/docs/locale/lv/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/contributing/contributing.po b/docs/locale/lv/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 72a0278b..00000000 --- a/docs/locale/lv/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/lv/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 3af293df..00000000 --- a/docs/locale/lv/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/lv/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 58c71d41..00000000 --- a/docs/locale/lv/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/lv/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 4aa1e295..00000000 --- a/docs/locale/lv/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/lv/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 98b25c43..00000000 --- a/docs/locale/lv/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/lv/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 6774d9d9..00000000 --- a/docs/locale/lv/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/index.po b/docs/locale/lv/LC_MESSAGES/index.po deleted file mode 100644 index 6649801a..00000000 --- a/docs/locale/lv/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/lv/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index c6fbc6dd..00000000 --- a/docs/locale/lv/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/overview/overview.po b/docs/locale/lv/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 07f3a997..00000000 --- a/docs/locale/lv/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/plugins/twilio.po b/docs/locale/lv/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 29569de2..00000000 --- a/docs/locale/lv/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/plugins/twitter.po b/docs/locale/lv/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 959b156d..00000000 --- a/docs/locale/lv/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/points/points.po b/docs/locale/lv/LC_MESSAGES/points/points.po deleted file mode 100644 index 0c3039ab..00000000 --- a/docs/locale/lv/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/reports/reports.po b/docs/locale/lv/LC_MESSAGES/reports/reports.po deleted file mode 100644 index d5dab90b..00000000 --- a/docs/locale/lv/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/lv/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index bd6073f9..00000000 --- a/docs/locale/lv/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/lv/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 5050f9e9..00000000 --- a/docs/locale/lv/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/lv/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 7c8d805c..00000000 --- a/docs/locale/lv/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/lv/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index c7c1842e..00000000 --- a/docs/locale/lv/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/set_up/variables.po b/docs/locale/lv/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index b811781c..00000000 --- a/docs/locale/lv/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/stages/stages.po b/docs/locale/lv/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 1a0b8b86..00000000 --- a/docs/locale/lv/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/lv/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/lv/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 55cb189c..00000000 --- a/docs/locale/lv/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Latvian (https://www.transifex.com/mautic/teams/33223/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/authentication/authentication.po b/docs/locale/mk_MK/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index a0a3e62b..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/builders/creating_themes.po b/docs/locale/mk_MK/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 7711343b..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/mk_MK/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 61e9adf6..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/mk_MK/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 1ad89c23..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/mk_MK/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 444c7e4f..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/mk_MK/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 92356a1d..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/mk_MK/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 1cf3a5f5..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/mk_MK/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 15b2306c..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/categories/categories-overview.po b/docs/locale/mk_MK/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 0a978d1e..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/channels/emails.po b/docs/locale/mk_MK/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 5081076e..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/channels/focus_items.po b/docs/locale/mk_MK/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 3f00904c..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/mk_MK/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index cc502dd4..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/channels/push_notifications.po b/docs/locale/mk_MK/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 1d7b5f4c..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/channels/sms.po b/docs/locale/mk_MK/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 2614e754..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/mk_MK/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index b34eaa38..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/channels/utm_tags.po b/docs/locale/mk_MK/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index a66908e5..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/channels/web_notifications.po b/docs/locale/mk_MK/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 5200b2a0..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/companies/companies_overview.po b/docs/locale/mk_MK/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 16dd9766..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/components/assets.po b/docs/locale/mk_MK/LC_MESSAGES/components/assets.po deleted file mode 100644 index b40c0580..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/mk_MK/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index d7008dcc..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/components/forms.po b/docs/locale/mk_MK/LC_MESSAGES/components/forms.po deleted file mode 100644 index 310bb3b4..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/components/landing_pages.po b/docs/locale/mk_MK/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 26d7976c..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/configuration/settings.po b/docs/locale/mk_MK/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index f1a48c76..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/mk_MK/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 4b0fcd31..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/mk_MK/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index f70a709b..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/contributing/contributing.po b/docs/locale/mk_MK/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index bbf79029..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/mk_MK/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index f767f703..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/mk_MK/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 10ae4c06..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/mk_MK/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index f29e2dd4..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/mk_MK/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 0c34109c..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/mk_MK/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 3b5495e0..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/index.po b/docs/locale/mk_MK/LC_MESSAGES/index.po deleted file mode 100644 index b4310e1b..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/mk_MK/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 6ac7bd5a..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/overview/overview.po b/docs/locale/mk_MK/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 3bd97b18..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/plugins/twilio.po b/docs/locale/mk_MK/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 881d8dd3..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/plugins/twitter.po b/docs/locale/mk_MK/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 79bc4d5d..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/points/points.po b/docs/locale/mk_MK/LC_MESSAGES/points/points.po deleted file mode 100644 index 681f27cc..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/reports/reports.po b/docs/locale/mk_MK/LC_MESSAGES/reports/reports.po deleted file mode 100644 index c6592384..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/mk_MK/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 65a6f2df..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/mk_MK/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index f26d4cd1..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/mk_MK/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index fd604b30..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/mk_MK/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 9dcc6b74..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/set_up/variables.po b/docs/locale/mk_MK/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 1c5876c9..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/stages/stages.po b/docs/locale/mk_MK/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 232c94a9..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/mk_MK/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/mk_MK/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 8489a9b2..00000000 --- a/docs/locale/mk_MK/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Macedonian (Macedonia) (https://www.transifex.com/mautic/teams/33223/mk_MK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/authentication/authentication.po b/docs/locale/mr_IN/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index a76fb4df..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/builders/creating_themes.po b/docs/locale/mr_IN/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index e0d0edb0..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/mr_IN/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 44bafce0..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/mr_IN/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 9cc77fd1..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/mr_IN/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 7f793856..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/mr_IN/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index ad4aaeab..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/mr_IN/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index f68d25c2..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/mr_IN/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 1094ce62..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/categories/categories-overview.po b/docs/locale/mr_IN/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index c16491b0..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/channels/emails.po b/docs/locale/mr_IN/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 78f0528d..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/channels/focus_items.po b/docs/locale/mr_IN/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index f2ca2a7c..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/mr_IN/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 006de35d..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/channels/push_notifications.po b/docs/locale/mr_IN/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index f9333ebb..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/channels/sms.po b/docs/locale/mr_IN/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 1f09600e..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/mr_IN/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index acf9c581..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/channels/utm_tags.po b/docs/locale/mr_IN/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index e94b9a04..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/channels/web_notifications.po b/docs/locale/mr_IN/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index e7b04c2b..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/companies/companies_overview.po b/docs/locale/mr_IN/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 22c6bab1..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/components/assets.po b/docs/locale/mr_IN/LC_MESSAGES/components/assets.po deleted file mode 100644 index 98d4b9a7..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/mr_IN/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 046de9de..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/components/forms.po b/docs/locale/mr_IN/LC_MESSAGES/components/forms.po deleted file mode 100644 index 7d105c34..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/components/landing_pages.po b/docs/locale/mr_IN/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 93c0fb1d..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/configuration/settings.po b/docs/locale/mr_IN/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index b60f6447..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/mr_IN/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 818e85ff..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/mr_IN/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 91af005e..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/contributing/contributing.po b/docs/locale/mr_IN/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 493d253b..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/mr_IN/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 300f3e7e..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/mr_IN/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 1e2bb83e..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/mr_IN/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 765c68a9..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/mr_IN/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index b9590fe5..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/mr_IN/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 21a4671b..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/index.po b/docs/locale/mr_IN/LC_MESSAGES/index.po deleted file mode 100644 index 303e1344..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/mr_IN/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 5f0e8105..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/overview/overview.po b/docs/locale/mr_IN/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 0b11592d..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/plugins/twilio.po b/docs/locale/mr_IN/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index e20ffa3b..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/plugins/twitter.po b/docs/locale/mr_IN/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 1a178ca9..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/points/points.po b/docs/locale/mr_IN/LC_MESSAGES/points/points.po deleted file mode 100644 index 31ed0878..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/reports/reports.po b/docs/locale/mr_IN/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 3fc71322..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/mr_IN/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index b7ed607e..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/mr_IN/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index b569ee67..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/mr_IN/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index cbdfe59f..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/mr_IN/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index cadefc4b..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/set_up/variables.po b/docs/locale/mr_IN/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index c372de00..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/stages/stages.po b/docs/locale/mr_IN/LC_MESSAGES/stages/stages.po deleted file mode 100644 index b45cc5dd..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/mr_IN/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/mr_IN/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index ff18db29..00000000 --- a/docs/locale/mr_IN/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Marathi (India) (https://www.transifex.com/mautic/teams/33223/mr_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mr_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/authentication/authentication.po b/docs/locale/nb_NO/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index a8984266..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/builders/creating_themes.po b/docs/locale/nb_NO/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index bae306a6..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/nb_NO/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 233a361a..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/nb_NO/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 4871f4b9..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/nb_NO/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 98cc95b8..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/nb_NO/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 5a3d0355..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/nb_NO/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 5d75d63b..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/nb_NO/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 222c2723..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/categories/categories-overview.po b/docs/locale/nb_NO/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index d96b354b..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/channels/emails.po b/docs/locale/nb_NO/LC_MESSAGES/channels/emails.po deleted file mode 100644 index a55cfec5..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/channels/focus_items.po b/docs/locale/nb_NO/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 0eaa6f39..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/nb_NO/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 665b98a5..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/channels/push_notifications.po b/docs/locale/nb_NO/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 2797dedd..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/channels/sms.po b/docs/locale/nb_NO/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 24343839..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/nb_NO/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 6b925a80..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/channels/utm_tags.po b/docs/locale/nb_NO/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 1560edcc..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/channels/web_notifications.po b/docs/locale/nb_NO/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index ca2e5802..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/companies/companies_overview.po b/docs/locale/nb_NO/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index e42e4f95..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/components/assets.po b/docs/locale/nb_NO/LC_MESSAGES/components/assets.po deleted file mode 100644 index 6515e339..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/nb_NO/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 0ea46e0a..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/components/forms.po b/docs/locale/nb_NO/LC_MESSAGES/components/forms.po deleted file mode 100644 index 62dc12c9..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/components/landing_pages.po b/docs/locale/nb_NO/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index f39507c3..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/configuration/settings.po b/docs/locale/nb_NO/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 406ca8e4..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/nb_NO/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 55c54ef1..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/nb_NO/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index ac9ede16..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/contributing/contributing.po b/docs/locale/nb_NO/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 1bd50abe..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/nb_NO/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index d967fa36..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/nb_NO/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index f9de0835..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/nb_NO/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 00d40957..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/nb_NO/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index ac4ca895..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/nb_NO/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 066e715c..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/index.po b/docs/locale/nb_NO/LC_MESSAGES/index.po deleted file mode 100644 index 7c8b85ea..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/nb_NO/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 6049adda..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/overview/overview.po b/docs/locale/nb_NO/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 555c7f75..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/plugins/twilio.po b/docs/locale/nb_NO/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index e96563f1..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/plugins/twitter.po b/docs/locale/nb_NO/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 5936c08f..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/points/points.po b/docs/locale/nb_NO/LC_MESSAGES/points/points.po deleted file mode 100644 index b075d04d..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/reports/reports.po b/docs/locale/nb_NO/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 2cd27aa2..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/nb_NO/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index f1458a39..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/nb_NO/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index f48c8fd1..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/nb_NO/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index f85c85d4..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/nb_NO/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 6d12d960..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/set_up/variables.po b/docs/locale/nb_NO/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 2afa82ad..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/stages/stages.po b/docs/locale/nb_NO/LC_MESSAGES/stages/stages.po deleted file mode 100644 index d4235fc0..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/nb_NO/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/nb_NO/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 441cc624..00000000 --- a/docs/locale/nb_NO/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/mautic/teams/33223/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/authentication/authentication.po b/docs/locale/nl/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 59d9d114..00000000 --- a/docs/locale/nl/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/builders/creating_themes.po b/docs/locale/nl/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index cb64ea12..00000000 --- a/docs/locale/nl/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/nl/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index b2e1c96a..00000000 --- a/docs/locale/nl/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/nl/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index ca492c07..00000000 --- a/docs/locale/nl/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/nl/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 8f1b1849..00000000 --- a/docs/locale/nl/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/nl/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index e63eac6f..00000000 --- a/docs/locale/nl/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/nl/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index cf7b7733..00000000 --- a/docs/locale/nl/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/nl/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index e212c94f..00000000 --- a/docs/locale/nl/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/categories/categories-overview.po b/docs/locale/nl/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 8c8b02b4..00000000 --- a/docs/locale/nl/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/channels/emails.po b/docs/locale/nl/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 549d6c59..00000000 --- a/docs/locale/nl/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/channels/focus_items.po b/docs/locale/nl/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 1b49d7af..00000000 --- a/docs/locale/nl/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/nl/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 6fe222ef..00000000 --- a/docs/locale/nl/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/channels/push_notifications.po b/docs/locale/nl/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index b72efc0d..00000000 --- a/docs/locale/nl/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/channels/sms.po b/docs/locale/nl/LC_MESSAGES/channels/sms.po deleted file mode 100644 index db96fa84..00000000 --- a/docs/locale/nl/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/nl/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index aca009e7..00000000 --- a/docs/locale/nl/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/channels/utm_tags.po b/docs/locale/nl/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 7323a684..00000000 --- a/docs/locale/nl/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/channels/web_notifications.po b/docs/locale/nl/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 86e26a43..00000000 --- a/docs/locale/nl/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/companies/companies_overview.po b/docs/locale/nl/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 91592d0b..00000000 --- a/docs/locale/nl/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/components/assets.po b/docs/locale/nl/LC_MESSAGES/components/assets.po deleted file mode 100644 index a6655baf..00000000 --- a/docs/locale/nl/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/nl/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index ef2a209b..00000000 --- a/docs/locale/nl/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/components/forms.po b/docs/locale/nl/LC_MESSAGES/components/forms.po deleted file mode 100644 index 562a158a..00000000 --- a/docs/locale/nl/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/components/landing_pages.po b/docs/locale/nl/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 8fb14a0c..00000000 --- a/docs/locale/nl/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/configuration/settings.po b/docs/locale/nl/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 7c9cb14b..00000000 --- a/docs/locale/nl/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/nl/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index ecb49fb0..00000000 --- a/docs/locale/nl/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/nl/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index a72121fb..00000000 --- a/docs/locale/nl/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/contributing/contributing.po b/docs/locale/nl/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 32adcc5a..00000000 --- a/docs/locale/nl/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/nl/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 1f4589fc..00000000 --- a/docs/locale/nl/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/nl/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index b1b9a9c7..00000000 --- a/docs/locale/nl/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/nl/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index d2244f9b..00000000 --- a/docs/locale/nl/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/nl/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index aa8c71be..00000000 --- a/docs/locale/nl/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/nl/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 3b2a63cb..00000000 --- a/docs/locale/nl/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/index.po b/docs/locale/nl/LC_MESSAGES/index.po deleted file mode 100644 index b127c7b4..00000000 --- a/docs/locale/nl/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/nl/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 6cf37706..00000000 --- a/docs/locale/nl/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/overview/overview.po b/docs/locale/nl/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 57224272..00000000 --- a/docs/locale/nl/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/plugins/twilio.po b/docs/locale/nl/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 1098903d..00000000 --- a/docs/locale/nl/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/plugins/twitter.po b/docs/locale/nl/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 76eafc04..00000000 --- a/docs/locale/nl/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/points/points.po b/docs/locale/nl/LC_MESSAGES/points/points.po deleted file mode 100644 index 44afac0a..00000000 --- a/docs/locale/nl/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/reports/reports.po b/docs/locale/nl/LC_MESSAGES/reports/reports.po deleted file mode 100644 index bdf66cbe..00000000 --- a/docs/locale/nl/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/nl/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 1dffec77..00000000 --- a/docs/locale/nl/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/nl/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 46ce1736..00000000 --- a/docs/locale/nl/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/nl/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 8fbddd41..00000000 --- a/docs/locale/nl/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/nl/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index b96ebd8f..00000000 --- a/docs/locale/nl/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/set_up/variables.po b/docs/locale/nl/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 89b13be2..00000000 --- a/docs/locale/nl/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/stages/stages.po b/docs/locale/nl/LC_MESSAGES/stages/stages.po deleted file mode 100644 index c7d0dbc3..00000000 --- a/docs/locale/nl/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/nl/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/nl/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index e433b1b9..00000000 --- a/docs/locale/nl/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (https://www.transifex.com/mautic/teams/33223/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/authentication/authentication.po b/docs/locale/nl_BE/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index cb2fc796..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/builders/creating_themes.po b/docs/locale/nl_BE/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 3bd6cebd..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/nl_BE/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index f2f8820e..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/nl_BE/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index efebab46..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/nl_BE/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index ba28b98f..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/nl_BE/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 082f8121..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/nl_BE/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index ecbbfc96..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/nl_BE/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 9131da90..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/categories/categories-overview.po b/docs/locale/nl_BE/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 98a7055e..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/channels/emails.po b/docs/locale/nl_BE/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 0bfb53d0..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/channels/focus_items.po b/docs/locale/nl_BE/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 586aab7c..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/nl_BE/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 7f00ca7f..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/channels/push_notifications.po b/docs/locale/nl_BE/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 884cb198..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/channels/sms.po b/docs/locale/nl_BE/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 3710a3e8..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/nl_BE/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 544a06bf..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/channels/utm_tags.po b/docs/locale/nl_BE/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index acdf0150..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/channels/web_notifications.po b/docs/locale/nl_BE/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 020db886..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/companies/companies_overview.po b/docs/locale/nl_BE/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 73e4f228..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/components/assets.po b/docs/locale/nl_BE/LC_MESSAGES/components/assets.po deleted file mode 100644 index 8c220050..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/nl_BE/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index aafb1d78..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/components/forms.po b/docs/locale/nl_BE/LC_MESSAGES/components/forms.po deleted file mode 100644 index 19d05064..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/components/landing_pages.po b/docs/locale/nl_BE/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 2b75cc44..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/configuration/settings.po b/docs/locale/nl_BE/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 5a826681..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/nl_BE/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index c953b142..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/nl_BE/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index ef33d5f4..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/contributing/contributing.po b/docs/locale/nl_BE/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index d3dc6f10..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/nl_BE/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index ba0ff717..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/nl_BE/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 45e67150..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/nl_BE/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 2d3478d4..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/nl_BE/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 69c8a969..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/nl_BE/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 13b84255..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/index.po b/docs/locale/nl_BE/LC_MESSAGES/index.po deleted file mode 100644 index 7492282b..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/nl_BE/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 1d6071c7..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/overview/overview.po b/docs/locale/nl_BE/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 8ca0c929..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/plugins/twilio.po b/docs/locale/nl_BE/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 462754c2..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/plugins/twitter.po b/docs/locale/nl_BE/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 931c7031..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/points/points.po b/docs/locale/nl_BE/LC_MESSAGES/points/points.po deleted file mode 100644 index 8f8e1829..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/reports/reports.po b/docs/locale/nl_BE/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 2f4ccac4..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/nl_BE/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 7f43bb53..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/nl_BE/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 4eee513b..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/nl_BE/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index b43c3c08..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/nl_BE/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index c3ea4fba..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/set_up/variables.po b/docs/locale/nl_BE/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 054532d7..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/stages/stages.po b/docs/locale/nl_BE/LC_MESSAGES/stages/stages.po deleted file mode 100644 index e484ea20..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/nl_BE/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/nl_BE/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 33294eb7..00000000 --- a/docs/locale/nl_BE/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/mautic/teams/33223/nl_BE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl_BE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/authentication/authentication.po b/docs/locale/pl/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 510dd113..00000000 --- a/docs/locale/pl/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/builders/creating_themes.po b/docs/locale/pl/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 5258d726..00000000 --- a/docs/locale/pl/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/pl/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 5edaa29e..00000000 --- a/docs/locale/pl/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/pl/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 5b86de9a..00000000 --- a/docs/locale/pl/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/pl/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 2ee77f7c..00000000 --- a/docs/locale/pl/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/pl/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 13e132f2..00000000 --- a/docs/locale/pl/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/pl/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index a02c046f..00000000 --- a/docs/locale/pl/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/pl/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index a96ad494..00000000 --- a/docs/locale/pl/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/categories/categories-overview.po b/docs/locale/pl/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 58c2d261..00000000 --- a/docs/locale/pl/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/channels/emails.po b/docs/locale/pl/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 66b47ff4..00000000 --- a/docs/locale/pl/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/channels/focus_items.po b/docs/locale/pl/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index dd0f6452..00000000 --- a/docs/locale/pl/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/pl/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 53e5e14c..00000000 --- a/docs/locale/pl/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/channels/push_notifications.po b/docs/locale/pl/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 7992f851..00000000 --- a/docs/locale/pl/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/channels/sms.po b/docs/locale/pl/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 47a76661..00000000 --- a/docs/locale/pl/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/pl/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 1409c66b..00000000 --- a/docs/locale/pl/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/channels/utm_tags.po b/docs/locale/pl/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 8df3812e..00000000 --- a/docs/locale/pl/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/channels/web_notifications.po b/docs/locale/pl/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index a9f69c03..00000000 --- a/docs/locale/pl/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/companies/companies_overview.po b/docs/locale/pl/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 3adce972..00000000 --- a/docs/locale/pl/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/components/assets.po b/docs/locale/pl/LC_MESSAGES/components/assets.po deleted file mode 100644 index 42902841..00000000 --- a/docs/locale/pl/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/pl/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index e53a0f55..00000000 --- a/docs/locale/pl/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/components/forms.po b/docs/locale/pl/LC_MESSAGES/components/forms.po deleted file mode 100644 index 715c5642..00000000 --- a/docs/locale/pl/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/components/landing_pages.po b/docs/locale/pl/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index dbda7ac1..00000000 --- a/docs/locale/pl/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/configuration/settings.po b/docs/locale/pl/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 68904f4b..00000000 --- a/docs/locale/pl/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/pl/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index f9f0bd66..00000000 --- a/docs/locale/pl/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/pl/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 4a171987..00000000 --- a/docs/locale/pl/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/contributing/contributing.po b/docs/locale/pl/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 911a6dc8..00000000 --- a/docs/locale/pl/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/pl/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index ea15fd7c..00000000 --- a/docs/locale/pl/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/pl/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 3273e3d9..00000000 --- a/docs/locale/pl/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/pl/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index f80c243b..00000000 --- a/docs/locale/pl/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/pl/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 03068672..00000000 --- a/docs/locale/pl/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/pl/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index a2bd7bd4..00000000 --- a/docs/locale/pl/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/index.po b/docs/locale/pl/LC_MESSAGES/index.po deleted file mode 100644 index aad4798a..00000000 --- a/docs/locale/pl/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/pl/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index eee1e6f1..00000000 --- a/docs/locale/pl/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/overview/overview.po b/docs/locale/pl/LC_MESSAGES/overview/overview.po deleted file mode 100644 index e5171a44..00000000 --- a/docs/locale/pl/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/plugins/twilio.po b/docs/locale/pl/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 2a32f108..00000000 --- a/docs/locale/pl/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/plugins/twitter.po b/docs/locale/pl/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 2541afc3..00000000 --- a/docs/locale/pl/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/points/points.po b/docs/locale/pl/LC_MESSAGES/points/points.po deleted file mode 100644 index 787057e7..00000000 --- a/docs/locale/pl/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/reports/reports.po b/docs/locale/pl/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 58dfd417..00000000 --- a/docs/locale/pl/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/pl/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index ebda8753..00000000 --- a/docs/locale/pl/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/pl/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 75685740..00000000 --- a/docs/locale/pl/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/pl/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index b5cb6451..00000000 --- a/docs/locale/pl/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/pl/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 7d91ec97..00000000 --- a/docs/locale/pl/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/set_up/variables.po b/docs/locale/pl/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index de442671..00000000 --- a/docs/locale/pl/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/stages/stages.po b/docs/locale/pl/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 2211d8e0..00000000 --- a/docs/locale/pl/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/pl/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/pl/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index c3be7f20..00000000 --- a/docs/locale/pl/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (https://www.transifex.com/mautic/teams/33223/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\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" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/authentication/authentication.po b/docs/locale/pl_PL/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index d4a51567..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/builders/creating_themes.po b/docs/locale/pl_PL/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 250edde9..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/pl_PL/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 756fb5fe..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/pl_PL/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 97a1c9a5..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/pl_PL/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 7c36ad16..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/pl_PL/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 8928f72a..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/pl_PL/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index d28c9f00..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/pl_PL/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 6d8966b2..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/categories/categories-overview.po b/docs/locale/pl_PL/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 466973c9..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/channels/emails.po b/docs/locale/pl_PL/LC_MESSAGES/channels/emails.po deleted file mode 100644 index ef86bcad..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/channels/focus_items.po b/docs/locale/pl_PL/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 907c9398..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/pl_PL/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index b7d4501c..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/channels/push_notifications.po b/docs/locale/pl_PL/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 40575b32..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/channels/sms.po b/docs/locale/pl_PL/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 6dd4c439..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/pl_PL/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 76b502f4..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/channels/utm_tags.po b/docs/locale/pl_PL/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 7536aed9..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/channels/web_notifications.po b/docs/locale/pl_PL/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 2c7a8e43..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/companies/companies_overview.po b/docs/locale/pl_PL/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index fbe06bf3..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/components/assets.po b/docs/locale/pl_PL/LC_MESSAGES/components/assets.po deleted file mode 100644 index 6b843382..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/pl_PL/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 2b29867c..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/components/forms.po b/docs/locale/pl_PL/LC_MESSAGES/components/forms.po deleted file mode 100644 index e9ce5de6..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/components/landing_pages.po b/docs/locale/pl_PL/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 88650f82..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/configuration/settings.po b/docs/locale/pl_PL/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 3d5ddace..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/pl_PL/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 0760e7d3..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/pl_PL/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 043ac0ea..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/contributing/contributing.po b/docs/locale/pl_PL/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index d7795d8b..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/pl_PL/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 4aefa9e2..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/pl_PL/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index e935e9be..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/pl_PL/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 1cd0261b..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/pl_PL/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index a1fa5317..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/pl_PL/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 06cd8b46..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/index.po b/docs/locale/pl_PL/LC_MESSAGES/index.po deleted file mode 100644 index 93d018e8..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/pl_PL/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 05ae08e2..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/overview/overview.po b/docs/locale/pl_PL/LC_MESSAGES/overview/overview.po deleted file mode 100644 index e8e37681..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/plugins/twilio.po b/docs/locale/pl_PL/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index f186f7d5..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/plugins/twitter.po b/docs/locale/pl_PL/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 9fba5fe3..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/points/points.po b/docs/locale/pl_PL/LC_MESSAGES/points/points.po deleted file mode 100644 index 1f2c462c..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/reports/reports.po b/docs/locale/pl_PL/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 11226b24..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/pl_PL/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 42f23fc7..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/pl_PL/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index f94f8773..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/pl_PL/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index abcb75dd..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/pl_PL/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 9532e0c1..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/set_up/variables.po b/docs/locale/pl_PL/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index c8d81b93..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/stages/stages.po b/docs/locale/pl_PL/LC_MESSAGES/stages/stages.po deleted file mode 100644 index dcd226be..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/pl_PL/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/pl_PL/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 89e76e41..00000000 --- a/docs/locale/pl_PL/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Polish (Poland) (https://www.transifex.com/mautic/teams/33223/pl_PL/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/authentication/authentication.po b/docs/locale/pt/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 11e3790f..00000000 --- a/docs/locale/pt/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/builders/creating_themes.po b/docs/locale/pt/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 606c0eac..00000000 --- a/docs/locale/pt/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/pt/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 09de9a29..00000000 --- a/docs/locale/pt/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/pt/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index f55d5153..00000000 --- a/docs/locale/pt/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/pt/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 46b9f82f..00000000 --- a/docs/locale/pt/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/pt/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 0b628745..00000000 --- a/docs/locale/pt/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/pt/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index af7b02c8..00000000 --- a/docs/locale/pt/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/pt/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 3f42ca97..00000000 --- a/docs/locale/pt/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/categories/categories-overview.po b/docs/locale/pt/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index a84bbf57..00000000 --- a/docs/locale/pt/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/channels/emails.po b/docs/locale/pt/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 559140e8..00000000 --- a/docs/locale/pt/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/channels/focus_items.po b/docs/locale/pt/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index e3c9faad..00000000 --- a/docs/locale/pt/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/pt/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index f5b34ce4..00000000 --- a/docs/locale/pt/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/channels/push_notifications.po b/docs/locale/pt/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 6f138bc1..00000000 --- a/docs/locale/pt/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/channels/sms.po b/docs/locale/pt/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 7c8abb4f..00000000 --- a/docs/locale/pt/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/pt/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 1b426fed..00000000 --- a/docs/locale/pt/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/channels/utm_tags.po b/docs/locale/pt/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 0ebf091f..00000000 --- a/docs/locale/pt/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/channels/web_notifications.po b/docs/locale/pt/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index af6f0ebb..00000000 --- a/docs/locale/pt/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/companies/companies_overview.po b/docs/locale/pt/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index fb3a1b5c..00000000 --- a/docs/locale/pt/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/components/assets.po b/docs/locale/pt/LC_MESSAGES/components/assets.po deleted file mode 100644 index 564b4e01..00000000 --- a/docs/locale/pt/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/pt/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 34d29873..00000000 --- a/docs/locale/pt/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/components/forms.po b/docs/locale/pt/LC_MESSAGES/components/forms.po deleted file mode 100644 index 41b7ff21..00000000 --- a/docs/locale/pt/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/components/landing_pages.po b/docs/locale/pt/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index ec10b7bd..00000000 --- a/docs/locale/pt/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/configuration/settings.po b/docs/locale/pt/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 6fb41121..00000000 --- a/docs/locale/pt/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/pt/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index ceadd3c9..00000000 --- a/docs/locale/pt/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/pt/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 6c95f8f4..00000000 --- a/docs/locale/pt/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/contributing/contributing.po b/docs/locale/pt/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 1dfe2fb8..00000000 --- a/docs/locale/pt/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/pt/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 325f70c3..00000000 --- a/docs/locale/pt/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/pt/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 6527c3cf..00000000 --- a/docs/locale/pt/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/pt/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 027f3eed..00000000 --- a/docs/locale/pt/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/pt/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 63aea2e1..00000000 --- a/docs/locale/pt/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/pt/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index e1c5ead8..00000000 --- a/docs/locale/pt/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/index.po b/docs/locale/pt/LC_MESSAGES/index.po deleted file mode 100644 index 6119355e..00000000 --- a/docs/locale/pt/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/pt/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 7daa0193..00000000 --- a/docs/locale/pt/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/overview/overview.po b/docs/locale/pt/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 4df5ae01..00000000 --- a/docs/locale/pt/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/plugins/twilio.po b/docs/locale/pt/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 5112550d..00000000 --- a/docs/locale/pt/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/plugins/twitter.po b/docs/locale/pt/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index a47b9acd..00000000 --- a/docs/locale/pt/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/points/points.po b/docs/locale/pt/LC_MESSAGES/points/points.po deleted file mode 100644 index 58c67a69..00000000 --- a/docs/locale/pt/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/reports/reports.po b/docs/locale/pt/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 0b72a805..00000000 --- a/docs/locale/pt/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/pt/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 15233dd5..00000000 --- a/docs/locale/pt/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/pt/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 9e46d1a5..00000000 --- a/docs/locale/pt/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/pt/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index f9d3a14f..00000000 --- a/docs/locale/pt/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/pt/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 18ee954a..00000000 --- a/docs/locale/pt/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/set_up/variables.po b/docs/locale/pt/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 04c2d3a9..00000000 --- a/docs/locale/pt/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/stages/stages.po b/docs/locale/pt/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 706beeb3..00000000 --- a/docs/locale/pt/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/pt/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/pt/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index b777ada5..00000000 --- a/docs/locale/pt/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (https://www.transifex.com/mautic/teams/33223/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/authentication/authentication.po b/docs/locale/pt_BR/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index a6b0646a..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/builders/creating_themes.po b/docs/locale/pt_BR/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 1b9d3c1f..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/pt_BR/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 9f9f412e..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/pt_BR/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index bb9d9646..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/pt_BR/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 31b46088..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/pt_BR/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index dcbffc59..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/pt_BR/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 3a18917b..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/pt_BR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 421154db..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/categories/categories-overview.po b/docs/locale/pt_BR/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index a5c67ba1..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/channels/emails.po b/docs/locale/pt_BR/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 0ca356f4..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/channels/focus_items.po b/docs/locale/pt_BR/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index d1786285..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/pt_BR/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 6097d50d..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/channels/push_notifications.po b/docs/locale/pt_BR/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index e2f70b5e..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/channels/sms.po b/docs/locale/pt_BR/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 6087e0c7..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/pt_BR/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index a41f3fd8..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/channels/utm_tags.po b/docs/locale/pt_BR/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index cfff31d7..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/channels/web_notifications.po b/docs/locale/pt_BR/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 87938e56..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/companies/companies_overview.po b/docs/locale/pt_BR/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 2c760f7b..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/components/assets.po b/docs/locale/pt_BR/LC_MESSAGES/components/assets.po deleted file mode 100644 index e85c9671..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/pt_BR/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 34627664..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/components/forms.po b/docs/locale/pt_BR/LC_MESSAGES/components/forms.po deleted file mode 100644 index 84dc1d08..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/components/landing_pages.po b/docs/locale/pt_BR/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 54e8ed08..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/configuration/settings.po b/docs/locale/pt_BR/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index ba8a5ed8..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/pt_BR/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index b271d1ab..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/pt_BR/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 5aaf55e7..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/contributing/contributing.po b/docs/locale/pt_BR/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 9ea1bdb9..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/pt_BR/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index feee12d6..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/pt_BR/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 46c8e7f5..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/pt_BR/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 18bccf7b..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/pt_BR/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index f7d03d82..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/pt_BR/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index f7bb33fb..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/index.po b/docs/locale/pt_BR/LC_MESSAGES/index.po deleted file mode 100644 index d3092890..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/pt_BR/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index d61cdb11..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/overview/overview.po b/docs/locale/pt_BR/LC_MESSAGES/overview/overview.po deleted file mode 100644 index f93a1031..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/plugins/twilio.po b/docs/locale/pt_BR/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 91fab676..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/plugins/twitter.po b/docs/locale/pt_BR/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index cd9b3b22..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/points/points.po b/docs/locale/pt_BR/LC_MESSAGES/points/points.po deleted file mode 100644 index 114a6892..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/reports/reports.po b/docs/locale/pt_BR/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 1b4c89cc..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/pt_BR/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index f1503d65..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/pt_BR/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index c598b413..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/pt_BR/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index db4d3b7a..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/pt_BR/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index baf46daa..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/set_up/variables.po b/docs/locale/pt_BR/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 49ed98db..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/stages/stages.po b/docs/locale/pt_BR/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 09bed943..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/pt_BR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/pt_BR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 16afe741..00000000 --- a/docs/locale/pt_BR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mautic/teams/33223/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/authentication/authentication.po b/docs/locale/pt_PT/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 93af4c23..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/builders/creating_themes.po b/docs/locale/pt_PT/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index c99c44cf..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/pt_PT/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 0bea2398..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/pt_PT/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index b79dbd1e..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/pt_PT/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 97baaf2e..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/pt_PT/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 973a4839..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/pt_PT/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index f9a46447..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/pt_PT/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 9609381b..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/categories/categories-overview.po b/docs/locale/pt_PT/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 8ec9f058..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/channels/emails.po b/docs/locale/pt_PT/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 6a3138f8..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/channels/focus_items.po b/docs/locale/pt_PT/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 569bc18a..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/pt_PT/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index b585546a..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/channels/push_notifications.po b/docs/locale/pt_PT/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 814c29ca..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/channels/sms.po b/docs/locale/pt_PT/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 1e4efc2d..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/pt_PT/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index c724ed9c..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/channels/utm_tags.po b/docs/locale/pt_PT/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index cd91dedc..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/channels/web_notifications.po b/docs/locale/pt_PT/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 76a332a5..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/companies/companies_overview.po b/docs/locale/pt_PT/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 824f35ef..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/components/assets.po b/docs/locale/pt_PT/LC_MESSAGES/components/assets.po deleted file mode 100644 index 1b6476d7..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/pt_PT/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 4afc50c9..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/components/forms.po b/docs/locale/pt_PT/LC_MESSAGES/components/forms.po deleted file mode 100644 index f86bdf6a..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/components/landing_pages.po b/docs/locale/pt_PT/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 063c46ac..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/configuration/settings.po b/docs/locale/pt_PT/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index dfdbe10c..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/pt_PT/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index f970ade7..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/pt_PT/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 09f90f16..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/contributing/contributing.po b/docs/locale/pt_PT/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index d1edf68b..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/pt_PT/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 2fb47c26..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/pt_PT/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 22928a40..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/pt_PT/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index c8396877..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/pt_PT/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index ac56f0f1..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/pt_PT/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 02fd0afa..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/index.po b/docs/locale/pt_PT/LC_MESSAGES/index.po deleted file mode 100644 index 63814b9b..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/pt_PT/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 1afc9ad7..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/overview/overview.po b/docs/locale/pt_PT/LC_MESSAGES/overview/overview.po deleted file mode 100644 index c38669ab..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/plugins/twilio.po b/docs/locale/pt_PT/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 3fdee464..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/plugins/twitter.po b/docs/locale/pt_PT/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 2dbe12dc..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/points/points.po b/docs/locale/pt_PT/LC_MESSAGES/points/points.po deleted file mode 100644 index 99e87c96..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/reports/reports.po b/docs/locale/pt_PT/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 39ff6dc8..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/pt_PT/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 4c2fc15c..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/pt_PT/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index c496c092..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/pt_PT/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 5e21c820..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/pt_PT/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index bd722d32..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/set_up/variables.po b/docs/locale/pt_PT/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index e2f2a5ba..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/stages/stages.po b/docs/locale/pt_PT/LC_MESSAGES/stages/stages.po deleted file mode 100644 index e2a89553..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/pt_PT/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/pt_PT/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 01fb844e..00000000 --- a/docs/locale/pt_PT/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/mautic/teams/33223/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/authentication/authentication.po b/docs/locale/ro/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 3daf15f4..00000000 --- a/docs/locale/ro/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/builders/creating_themes.po b/docs/locale/ro/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index fa5da47e..00000000 --- a/docs/locale/ro/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/ro/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 550bb8c5..00000000 --- a/docs/locale/ro/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/ro/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index ec066667..00000000 --- a/docs/locale/ro/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/ro/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index d253f2bf..00000000 --- a/docs/locale/ro/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/ro/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 283ed43f..00000000 --- a/docs/locale/ro/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/ro/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 0e205f21..00000000 --- a/docs/locale/ro/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/ro/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index e9953fa0..00000000 --- a/docs/locale/ro/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/categories/categories-overview.po b/docs/locale/ro/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index bad53d61..00000000 --- a/docs/locale/ro/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/channels/emails.po b/docs/locale/ro/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 5de19f12..00000000 --- a/docs/locale/ro/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/channels/focus_items.po b/docs/locale/ro/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index ba60726d..00000000 --- a/docs/locale/ro/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/ro/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 8ad8366f..00000000 --- a/docs/locale/ro/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/channels/push_notifications.po b/docs/locale/ro/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 3c1881cc..00000000 --- a/docs/locale/ro/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/channels/sms.po b/docs/locale/ro/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 07243379..00000000 --- a/docs/locale/ro/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/ro/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index b0b5f78c..00000000 --- a/docs/locale/ro/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/channels/utm_tags.po b/docs/locale/ro/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 4708b958..00000000 --- a/docs/locale/ro/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/channels/web_notifications.po b/docs/locale/ro/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index ceeb1a3a..00000000 --- a/docs/locale/ro/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/companies/companies_overview.po b/docs/locale/ro/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index f91a273a..00000000 --- a/docs/locale/ro/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/components/assets.po b/docs/locale/ro/LC_MESSAGES/components/assets.po deleted file mode 100644 index 9255b5d3..00000000 --- a/docs/locale/ro/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/ro/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index c12b0857..00000000 --- a/docs/locale/ro/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/components/forms.po b/docs/locale/ro/LC_MESSAGES/components/forms.po deleted file mode 100644 index c089f4a5..00000000 --- a/docs/locale/ro/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/components/landing_pages.po b/docs/locale/ro/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 913ed9ec..00000000 --- a/docs/locale/ro/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/configuration/settings.po b/docs/locale/ro/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index b9db3221..00000000 --- a/docs/locale/ro/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/ro/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 6d7f02ff..00000000 --- a/docs/locale/ro/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/ro/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 6167cc06..00000000 --- a/docs/locale/ro/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/contributing/contributing.po b/docs/locale/ro/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index b5452b5b..00000000 --- a/docs/locale/ro/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/ro/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index e7472284..00000000 --- a/docs/locale/ro/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/ro/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index cc6d64aa..00000000 --- a/docs/locale/ro/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/ro/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index a9d56bee..00000000 --- a/docs/locale/ro/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/ro/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index e58dedcc..00000000 --- a/docs/locale/ro/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/ro/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 0ed5c416..00000000 --- a/docs/locale/ro/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/index.po b/docs/locale/ro/LC_MESSAGES/index.po deleted file mode 100644 index af0dea52..00000000 --- a/docs/locale/ro/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/ro/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 61eb29bd..00000000 --- a/docs/locale/ro/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/overview/overview.po b/docs/locale/ro/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 327920b4..00000000 --- a/docs/locale/ro/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/plugins/twilio.po b/docs/locale/ro/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 64670d73..00000000 --- a/docs/locale/ro/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/plugins/twitter.po b/docs/locale/ro/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 8452dd11..00000000 --- a/docs/locale/ro/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/points/points.po b/docs/locale/ro/LC_MESSAGES/points/points.po deleted file mode 100644 index 0313a44b..00000000 --- a/docs/locale/ro/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/reports/reports.po b/docs/locale/ro/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 61f2f01a..00000000 --- a/docs/locale/ro/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/ro/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index e3d155af..00000000 --- a/docs/locale/ro/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/ro/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 743b5d10..00000000 --- a/docs/locale/ro/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/ro/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 0991bc28..00000000 --- a/docs/locale/ro/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/ro/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index e038419f..00000000 --- a/docs/locale/ro/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/set_up/variables.po b/docs/locale/ro/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 340e560e..00000000 --- a/docs/locale/ro/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/stages/stages.po b/docs/locale/ro/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 5353c962..00000000 --- a/docs/locale/ro/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/ro/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/ro/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index d52b9d31..00000000 --- a/docs/locale/ro/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (https://www.transifex.com/mautic/teams/33223/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/authentication/authentication.po b/docs/locale/ro_RO/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 36dff7d7..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/builders/creating_themes.po b/docs/locale/ro_RO/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 4ed9aa36..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/ro_RO/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 573efdb8..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/ro_RO/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index b44c4ab9..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/ro_RO/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index ecbdc7e2..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/ro_RO/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index a332eb3a..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/ro_RO/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index b6e49b55..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/ro_RO/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index d446c623..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/categories/categories-overview.po b/docs/locale/ro_RO/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 9e9e76c3..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/channels/emails.po b/docs/locale/ro_RO/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 3140f014..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/channels/focus_items.po b/docs/locale/ro_RO/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 8b3322af..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/ro_RO/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index d6d88ee2..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/channels/push_notifications.po b/docs/locale/ro_RO/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 6c8087dc..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/channels/sms.po b/docs/locale/ro_RO/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 177637fa..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/ro_RO/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 9b6c1650..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/channels/utm_tags.po b/docs/locale/ro_RO/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 969e5bac..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/channels/web_notifications.po b/docs/locale/ro_RO/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 90e73a51..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/companies/companies_overview.po b/docs/locale/ro_RO/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index c3c15621..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/components/assets.po b/docs/locale/ro_RO/LC_MESSAGES/components/assets.po deleted file mode 100644 index c8db64ac..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/ro_RO/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 1742fabe..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/components/forms.po b/docs/locale/ro_RO/LC_MESSAGES/components/forms.po deleted file mode 100644 index ea7771ea..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/components/landing_pages.po b/docs/locale/ro_RO/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index fba7e58e..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/configuration/settings.po b/docs/locale/ro_RO/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index e2a62caf..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/ro_RO/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 2c9ce21c..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/ro_RO/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 42c621b2..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/contributing/contributing.po b/docs/locale/ro_RO/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 85b5a06c..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/ro_RO/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 4c2b9aa6..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/ro_RO/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 973879bf..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/ro_RO/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 25a6ca16..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/ro_RO/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 78b206f6..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/ro_RO/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 91bf42b6..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/index.po b/docs/locale/ro_RO/LC_MESSAGES/index.po deleted file mode 100644 index 598a05a9..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/ro_RO/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index d667d46b..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/overview/overview.po b/docs/locale/ro_RO/LC_MESSAGES/overview/overview.po deleted file mode 100644 index c761625b..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/plugins/twilio.po b/docs/locale/ro_RO/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 1235cd1e..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/plugins/twitter.po b/docs/locale/ro_RO/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 0d9e68ce..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/points/points.po b/docs/locale/ro_RO/LC_MESSAGES/points/points.po deleted file mode 100644 index ecab3814..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/reports/reports.po b/docs/locale/ro_RO/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 7f9006fe..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/ro_RO/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index dbbeb372..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/ro_RO/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 7dcbfc8e..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/ro_RO/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 6e376de8..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/ro_RO/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index e9e04238..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/set_up/variables.po b/docs/locale/ro_RO/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 4d6739c1..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/stages/stages.po b/docs/locale/ro_RO/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 04e07fcb..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/ro_RO/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/ro_RO/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 1040d9dd..00000000 --- a/docs/locale/ro_RO/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Romanian (Romania) (https://www.transifex.com/mautic/teams/33223/ro_RO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/authentication/authentication.po b/docs/locale/ru/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 1cdb2522..00000000 --- a/docs/locale/ru/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/builders/creating_themes.po b/docs/locale/ru/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index c8845004..00000000 --- a/docs/locale/ru/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/ru/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 419fb904..00000000 --- a/docs/locale/ru/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/ru/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 3cf679f0..00000000 --- a/docs/locale/ru/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/ru/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index c4133685..00000000 --- a/docs/locale/ru/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/ru/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index d910aef2..00000000 --- a/docs/locale/ru/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/ru/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 8d9f8dd2..00000000 --- a/docs/locale/ru/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/ru/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index c2394d3d..00000000 --- a/docs/locale/ru/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/categories/categories-overview.po b/docs/locale/ru/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 460a0a3f..00000000 --- a/docs/locale/ru/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/channels/emails.po b/docs/locale/ru/LC_MESSAGES/channels/emails.po deleted file mode 100644 index e55df976..00000000 --- a/docs/locale/ru/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/channels/focus_items.po b/docs/locale/ru/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index ce9c244b..00000000 --- a/docs/locale/ru/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/ru/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index ce27d279..00000000 --- a/docs/locale/ru/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/channels/push_notifications.po b/docs/locale/ru/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index dd393d69..00000000 --- a/docs/locale/ru/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/channels/sms.po b/docs/locale/ru/LC_MESSAGES/channels/sms.po deleted file mode 100644 index bac3b8a3..00000000 --- a/docs/locale/ru/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/ru/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 11d55b61..00000000 --- a/docs/locale/ru/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/channels/utm_tags.po b/docs/locale/ru/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 867680e9..00000000 --- a/docs/locale/ru/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/channels/web_notifications.po b/docs/locale/ru/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 6be7e280..00000000 --- a/docs/locale/ru/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/companies/companies_overview.po b/docs/locale/ru/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 03de7a1b..00000000 --- a/docs/locale/ru/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/components/assets.po b/docs/locale/ru/LC_MESSAGES/components/assets.po deleted file mode 100644 index 229a2bf6..00000000 --- a/docs/locale/ru/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/ru/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 085a7260..00000000 --- a/docs/locale/ru/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/components/forms.po b/docs/locale/ru/LC_MESSAGES/components/forms.po deleted file mode 100644 index b12f70dc..00000000 --- a/docs/locale/ru/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/components/landing_pages.po b/docs/locale/ru/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 98c01ac0..00000000 --- a/docs/locale/ru/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/configuration/settings.po b/docs/locale/ru/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 37a2df36..00000000 --- a/docs/locale/ru/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/ru/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 53b8c0d6..00000000 --- a/docs/locale/ru/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/ru/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index d82c71b5..00000000 --- a/docs/locale/ru/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/contributing/contributing.po b/docs/locale/ru/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 6276bf0b..00000000 --- a/docs/locale/ru/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/ru/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index b1041201..00000000 --- a/docs/locale/ru/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/ru/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 221eb7df..00000000 --- a/docs/locale/ru/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/ru/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index cd881fac..00000000 --- a/docs/locale/ru/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/ru/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index aee2ee40..00000000 --- a/docs/locale/ru/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/ru/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 4001790f..00000000 --- a/docs/locale/ru/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/index.po b/docs/locale/ru/LC_MESSAGES/index.po deleted file mode 100644 index a34e7fb5..00000000 --- a/docs/locale/ru/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/ru/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 584b8418..00000000 --- a/docs/locale/ru/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/overview/overview.po b/docs/locale/ru/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 57ba1bae..00000000 --- a/docs/locale/ru/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/plugins/twilio.po b/docs/locale/ru/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index e90fd741..00000000 --- a/docs/locale/ru/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/plugins/twitter.po b/docs/locale/ru/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 5851f9ad..00000000 --- a/docs/locale/ru/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/points/points.po b/docs/locale/ru/LC_MESSAGES/points/points.po deleted file mode 100644 index c14f9c1d..00000000 --- a/docs/locale/ru/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/reports/reports.po b/docs/locale/ru/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 28ecca0d..00000000 --- a/docs/locale/ru/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/ru/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 3d400a37..00000000 --- a/docs/locale/ru/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/ru/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 3fa875f8..00000000 --- a/docs/locale/ru/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/ru/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index d3d85865..00000000 --- a/docs/locale/ru/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/ru/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 8818e7c0..00000000 --- a/docs/locale/ru/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/set_up/variables.po b/docs/locale/ru/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 23afbfd1..00000000 --- a/docs/locale/ru/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/stages/stages.po b/docs/locale/ru/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 14de6472..00000000 --- a/docs/locale/ru/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/ru/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/ru/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 9bd1ceb8..00000000 --- a/docs/locale/ru/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (https://www.transifex.com/mautic/teams/33223/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/authentication/authentication.po b/docs/locale/ru_RU/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index d58b9f2b..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/builders/creating_themes.po b/docs/locale/ru_RU/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 366ba6cb..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/ru_RU/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 20a68371..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/ru_RU/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index b878b36d..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/ru_RU/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 8ab874b6..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/ru_RU/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 1aebb489..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/ru_RU/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index eabea6e4..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/ru_RU/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 560e1192..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/categories/categories-overview.po b/docs/locale/ru_RU/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 5d618354..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/channels/emails.po b/docs/locale/ru_RU/LC_MESSAGES/channels/emails.po deleted file mode 100644 index d8f05fa6..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/channels/focus_items.po b/docs/locale/ru_RU/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 91f77990..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/ru_RU/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index f65b556f..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/channels/push_notifications.po b/docs/locale/ru_RU/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 0426e5ab..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/channels/sms.po b/docs/locale/ru_RU/LC_MESSAGES/channels/sms.po deleted file mode 100644 index fb277ebe..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/ru_RU/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index afc5eb14..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/channels/utm_tags.po b/docs/locale/ru_RU/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 53a3b785..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/channels/web_notifications.po b/docs/locale/ru_RU/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index e637e729..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/companies/companies_overview.po b/docs/locale/ru_RU/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index a8524cc7..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/components/assets.po b/docs/locale/ru_RU/LC_MESSAGES/components/assets.po deleted file mode 100644 index 371581fb..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/ru_RU/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 53587a54..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/components/forms.po b/docs/locale/ru_RU/LC_MESSAGES/components/forms.po deleted file mode 100644 index 2523bcf5..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/components/landing_pages.po b/docs/locale/ru_RU/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index ac17b971..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/configuration/settings.po b/docs/locale/ru_RU/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 0fa6f1b4..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/ru_RU/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 13357fed..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/ru_RU/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 97fbf075..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/contributing/contributing.po b/docs/locale/ru_RU/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 2e2d7ea7..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/ru_RU/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index d3b12032..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/ru_RU/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 0494d5b8..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/ru_RU/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index b6ba9d19..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/ru_RU/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 67650db5..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/ru_RU/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 0ea28cb7..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/index.po b/docs/locale/ru_RU/LC_MESSAGES/index.po deleted file mode 100644 index 5944766e..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/ru_RU/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index ed8cae98..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/overview/overview.po b/docs/locale/ru_RU/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 2a98284f..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/plugins/twilio.po b/docs/locale/ru_RU/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index a1614d0b..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/plugins/twitter.po b/docs/locale/ru_RU/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index a1972ff5..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/points/points.po b/docs/locale/ru_RU/LC_MESSAGES/points/points.po deleted file mode 100644 index 7ac2f7a0..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/reports/reports.po b/docs/locale/ru_RU/LC_MESSAGES/reports/reports.po deleted file mode 100644 index fd259012..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/ru_RU/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 7a39bb7f..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/ru_RU/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 000952a8..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/ru_RU/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index c5ab5419..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/ru_RU/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index b083035b..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/set_up/variables.po b/docs/locale/ru_RU/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index ff9f5746..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/stages/stages.po b/docs/locale/ru_RU/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 634f7077..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/ru_RU/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/ru_RU/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index ba7c9d85..00000000 --- a/docs/locale/ru_RU/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Russian (Russia) (https://www.transifex.com/mautic/teams/33223/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/authentication/authentication.po b/docs/locale/sk/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 03eb17f5..00000000 --- a/docs/locale/sk/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/builders/creating_themes.po b/docs/locale/sk/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index ffbbd79d..00000000 --- a/docs/locale/sk/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/sk/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 9be76303..00000000 --- a/docs/locale/sk/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/sk/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index c7bf3194..00000000 --- a/docs/locale/sk/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/sk/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 5fb3343a..00000000 --- a/docs/locale/sk/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/sk/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 1cc51e28..00000000 --- a/docs/locale/sk/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/sk/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 2987f24e..00000000 --- a/docs/locale/sk/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/sk/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 11058eec..00000000 --- a/docs/locale/sk/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/categories/categories-overview.po b/docs/locale/sk/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 1b6252b4..00000000 --- a/docs/locale/sk/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/channels/emails.po b/docs/locale/sk/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 22baf2ab..00000000 --- a/docs/locale/sk/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/channels/focus_items.po b/docs/locale/sk/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 975d6f90..00000000 --- a/docs/locale/sk/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/sk/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 7bae353d..00000000 --- a/docs/locale/sk/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/channels/push_notifications.po b/docs/locale/sk/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 19c163ab..00000000 --- a/docs/locale/sk/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/channels/sms.po b/docs/locale/sk/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 5d4e4b2a..00000000 --- a/docs/locale/sk/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/sk/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index f45effc1..00000000 --- a/docs/locale/sk/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/channels/utm_tags.po b/docs/locale/sk/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index e9be62f9..00000000 --- a/docs/locale/sk/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/channels/web_notifications.po b/docs/locale/sk/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 4d2a9704..00000000 --- a/docs/locale/sk/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/companies/companies_overview.po b/docs/locale/sk/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 28dc4779..00000000 --- a/docs/locale/sk/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/components/assets.po b/docs/locale/sk/LC_MESSAGES/components/assets.po deleted file mode 100644 index 701efb1c..00000000 --- a/docs/locale/sk/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/sk/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 522309cf..00000000 --- a/docs/locale/sk/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/components/forms.po b/docs/locale/sk/LC_MESSAGES/components/forms.po deleted file mode 100644 index 894f96c7..00000000 --- a/docs/locale/sk/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/components/landing_pages.po b/docs/locale/sk/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 974ba79d..00000000 --- a/docs/locale/sk/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/configuration/settings.po b/docs/locale/sk/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 1bd9013e..00000000 --- a/docs/locale/sk/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/sk/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 2610582f..00000000 --- a/docs/locale/sk/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/sk/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 4aef731c..00000000 --- a/docs/locale/sk/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/contributing/contributing.po b/docs/locale/sk/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 405270d3..00000000 --- a/docs/locale/sk/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/sk/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 7a70ea64..00000000 --- a/docs/locale/sk/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/sk/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 91c4da9c..00000000 --- a/docs/locale/sk/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/sk/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 59188597..00000000 --- a/docs/locale/sk/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/sk/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 3a1d07f1..00000000 --- a/docs/locale/sk/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/sk/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 6898b27d..00000000 --- a/docs/locale/sk/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/index.po b/docs/locale/sk/LC_MESSAGES/index.po deleted file mode 100644 index 7966590a..00000000 --- a/docs/locale/sk/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/sk/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 4d80947b..00000000 --- a/docs/locale/sk/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/overview/overview.po b/docs/locale/sk/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 65a58466..00000000 --- a/docs/locale/sk/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/plugins/twilio.po b/docs/locale/sk/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index ba2ee3d5..00000000 --- a/docs/locale/sk/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/plugins/twitter.po b/docs/locale/sk/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 6c6bdf8f..00000000 --- a/docs/locale/sk/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/points/points.po b/docs/locale/sk/LC_MESSAGES/points/points.po deleted file mode 100644 index 257d0652..00000000 --- a/docs/locale/sk/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/reports/reports.po b/docs/locale/sk/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 6b18461f..00000000 --- a/docs/locale/sk/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/sk/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 9818af6c..00000000 --- a/docs/locale/sk/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/sk/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index b4546726..00000000 --- a/docs/locale/sk/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/sk/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index c6b5a5fe..00000000 --- a/docs/locale/sk/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/sk/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 0549f054..00000000 --- a/docs/locale/sk/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/set_up/variables.po b/docs/locale/sk/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index c202c98d..00000000 --- a/docs/locale/sk/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/stages/stages.po b/docs/locale/sk/LC_MESSAGES/stages/stages.po deleted file mode 100644 index b26ae6d7..00000000 --- a/docs/locale/sk/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/sk/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/sk/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 61073370..00000000 --- a/docs/locale/sk/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovak (https://www.transifex.com/mautic/teams/33223/sk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/authentication/authentication.po b/docs/locale/sl_SI/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 9ee270ce..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/builders/creating_themes.po b/docs/locale/sl_SI/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 6dbba1f9..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/sl_SI/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 6f8b7d9b..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/sl_SI/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 710c851a..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/sl_SI/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 2e2569e6..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/sl_SI/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index ec48531a..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/sl_SI/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 486131a1..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/sl_SI/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 34394aa4..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/categories/categories-overview.po b/docs/locale/sl_SI/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 5e4578e1..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/channels/emails.po b/docs/locale/sl_SI/LC_MESSAGES/channels/emails.po deleted file mode 100644 index edba09be..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/channels/focus_items.po b/docs/locale/sl_SI/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 1788c41d..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/sl_SI/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 4086e708..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/channels/push_notifications.po b/docs/locale/sl_SI/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 30c8e5bd..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/channels/sms.po b/docs/locale/sl_SI/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 9bc2375d..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/sl_SI/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index e457ba8e..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/channels/utm_tags.po b/docs/locale/sl_SI/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 1b8ef1ac..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/channels/web_notifications.po b/docs/locale/sl_SI/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index ba28b85a..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/companies/companies_overview.po b/docs/locale/sl_SI/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index d5a6c47f..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/components/assets.po b/docs/locale/sl_SI/LC_MESSAGES/components/assets.po deleted file mode 100644 index c98a3b27..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/sl_SI/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 92acb666..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/components/forms.po b/docs/locale/sl_SI/LC_MESSAGES/components/forms.po deleted file mode 100644 index 804305f2..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/components/landing_pages.po b/docs/locale/sl_SI/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 62b945d3..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/configuration/settings.po b/docs/locale/sl_SI/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 491bbca6..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/sl_SI/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 3105b3b9..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/sl_SI/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index cdc0cbe0..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/contributing/contributing.po b/docs/locale/sl_SI/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index cf033a54..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/sl_SI/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 3fb30112..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/sl_SI/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 165cab8b..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/sl_SI/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 0c192e97..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/sl_SI/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 47c6b077..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/sl_SI/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 496048bc..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/index.po b/docs/locale/sl_SI/LC_MESSAGES/index.po deleted file mode 100644 index d09b04e7..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/sl_SI/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 4ea70a98..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/overview/overview.po b/docs/locale/sl_SI/LC_MESSAGES/overview/overview.po deleted file mode 100644 index a6b708b0..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/plugins/twilio.po b/docs/locale/sl_SI/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 12360739..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/plugins/twitter.po b/docs/locale/sl_SI/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 4699a118..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/points/points.po b/docs/locale/sl_SI/LC_MESSAGES/points/points.po deleted file mode 100644 index f87be91c..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/reports/reports.po b/docs/locale/sl_SI/LC_MESSAGES/reports/reports.po deleted file mode 100644 index ef8c6d17..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/sl_SI/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 4ade0541..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/sl_SI/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 6e0e3301..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/sl_SI/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 18059368..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/sl_SI/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 14e176cd..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/set_up/variables.po b/docs/locale/sl_SI/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 4ba18133..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/stages/stages.po b/docs/locale/sl_SI/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 3a64d311..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/sl_SI/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/sl_SI/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index cbc682ca..00000000 --- a/docs/locale/sl_SI/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/mautic/teams/33223/sl_SI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/authentication/authentication.po b/docs/locale/sq/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 494c6420..00000000 --- a/docs/locale/sq/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/builders/creating_themes.po b/docs/locale/sq/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index c786f57d..00000000 --- a/docs/locale/sq/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/sq/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 95ce98a8..00000000 --- a/docs/locale/sq/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/sq/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 648fda3a..00000000 --- a/docs/locale/sq/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/sq/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 70e40986..00000000 --- a/docs/locale/sq/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/sq/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 00011da6..00000000 --- a/docs/locale/sq/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/sq/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 5e1cd9f4..00000000 --- a/docs/locale/sq/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/sq/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 66cbbc97..00000000 --- a/docs/locale/sq/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/categories/categories-overview.po b/docs/locale/sq/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 075c9927..00000000 --- a/docs/locale/sq/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/channels/emails.po b/docs/locale/sq/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 08dba46e..00000000 --- a/docs/locale/sq/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/channels/focus_items.po b/docs/locale/sq/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 4be5adb4..00000000 --- a/docs/locale/sq/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/sq/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 6c7c3e63..00000000 --- a/docs/locale/sq/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/channels/push_notifications.po b/docs/locale/sq/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 74cbd35c..00000000 --- a/docs/locale/sq/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/channels/sms.po b/docs/locale/sq/LC_MESSAGES/channels/sms.po deleted file mode 100644 index cd3857e9..00000000 --- a/docs/locale/sq/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/sq/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index b8b10405..00000000 --- a/docs/locale/sq/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/channels/utm_tags.po b/docs/locale/sq/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 3e5a057e..00000000 --- a/docs/locale/sq/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/channels/web_notifications.po b/docs/locale/sq/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index dd5dc47f..00000000 --- a/docs/locale/sq/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/companies/companies_overview.po b/docs/locale/sq/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 75488d16..00000000 --- a/docs/locale/sq/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/components/assets.po b/docs/locale/sq/LC_MESSAGES/components/assets.po deleted file mode 100644 index d108e2f3..00000000 --- a/docs/locale/sq/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/sq/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 1fac507e..00000000 --- a/docs/locale/sq/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/components/forms.po b/docs/locale/sq/LC_MESSAGES/components/forms.po deleted file mode 100644 index a483f459..00000000 --- a/docs/locale/sq/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/components/landing_pages.po b/docs/locale/sq/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 87b2075d..00000000 --- a/docs/locale/sq/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/configuration/settings.po b/docs/locale/sq/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 1da7fba3..00000000 --- a/docs/locale/sq/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/sq/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 3aafbbbc..00000000 --- a/docs/locale/sq/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/sq/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 34979027..00000000 --- a/docs/locale/sq/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/contributing/contributing.po b/docs/locale/sq/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 12f0440b..00000000 --- a/docs/locale/sq/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/sq/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index fd3d9ae3..00000000 --- a/docs/locale/sq/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/sq/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 3669ce15..00000000 --- a/docs/locale/sq/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/sq/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index a69bafb3..00000000 --- a/docs/locale/sq/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/sq/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 9697c9fc..00000000 --- a/docs/locale/sq/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/sq/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index df422832..00000000 --- a/docs/locale/sq/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/index.po b/docs/locale/sq/LC_MESSAGES/index.po deleted file mode 100644 index 0e405d67..00000000 --- a/docs/locale/sq/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/sq/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index e6124d11..00000000 --- a/docs/locale/sq/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/overview/overview.po b/docs/locale/sq/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 56254819..00000000 --- a/docs/locale/sq/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/plugins/twilio.po b/docs/locale/sq/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 01d6e394..00000000 --- a/docs/locale/sq/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/plugins/twitter.po b/docs/locale/sq/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 3c9a171d..00000000 --- a/docs/locale/sq/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/points/points.po b/docs/locale/sq/LC_MESSAGES/points/points.po deleted file mode 100644 index 23e548f6..00000000 --- a/docs/locale/sq/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/reports/reports.po b/docs/locale/sq/LC_MESSAGES/reports/reports.po deleted file mode 100644 index d876f3af..00000000 --- a/docs/locale/sq/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/sq/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 18ddb306..00000000 --- a/docs/locale/sq/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/sq/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 1b279b32..00000000 --- a/docs/locale/sq/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/sq/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index a24d3730..00000000 --- a/docs/locale/sq/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/sq/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 8cac4764..00000000 --- a/docs/locale/sq/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/set_up/variables.po b/docs/locale/sq/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 4c34b769..00000000 --- a/docs/locale/sq/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/stages/stages.po b/docs/locale/sq/LC_MESSAGES/stages/stages.po deleted file mode 100644 index d80f873a..00000000 --- a/docs/locale/sq/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/sq/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/sq/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 98ed6936..00000000 --- a/docs/locale/sq/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Albanian (https://www.transifex.com/mautic/teams/33223/sq/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/authentication/authentication.po b/docs/locale/sr_RS/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index d4387238..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/builders/creating_themes.po b/docs/locale/sr_RS/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index d08f9e4d..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/sr_RS/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 038d8b50..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/sr_RS/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index c1a7f3a1..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/sr_RS/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index ca679c91..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/sr_RS/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index ccb9afa4..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/sr_RS/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index ae865ba1..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/sr_RS/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index fad82f2e..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/categories/categories-overview.po b/docs/locale/sr_RS/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index e4aaaa78..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/channels/emails.po b/docs/locale/sr_RS/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 8cb137ee..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/channels/focus_items.po b/docs/locale/sr_RS/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index f509fc51..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/sr_RS/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 2adc7c6a..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/channels/push_notifications.po b/docs/locale/sr_RS/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index bb3e9d05..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/channels/sms.po b/docs/locale/sr_RS/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 1e11f5a6..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/sr_RS/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index c5bdd92d..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/channels/utm_tags.po b/docs/locale/sr_RS/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index b7a4cc3b..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/channels/web_notifications.po b/docs/locale/sr_RS/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 94041843..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/companies/companies_overview.po b/docs/locale/sr_RS/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 03b56500..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/components/assets.po b/docs/locale/sr_RS/LC_MESSAGES/components/assets.po deleted file mode 100644 index f39df25c..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/sr_RS/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index a0ecf980..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/components/forms.po b/docs/locale/sr_RS/LC_MESSAGES/components/forms.po deleted file mode 100644 index 9782f900..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/components/landing_pages.po b/docs/locale/sr_RS/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 667482bb..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/configuration/settings.po b/docs/locale/sr_RS/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 24f70334..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/sr_RS/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 5915f958..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/sr_RS/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index d7a5b5f8..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/contributing/contributing.po b/docs/locale/sr_RS/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 7904cd06..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/sr_RS/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 74f32527..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/sr_RS/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 649248de..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/sr_RS/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index f23da6ea..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/sr_RS/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 54389a9d..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/sr_RS/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index e6032a60..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/index.po b/docs/locale/sr_RS/LC_MESSAGES/index.po deleted file mode 100644 index c34ebe49..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/sr_RS/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index e10c455e..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/overview/overview.po b/docs/locale/sr_RS/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 1f3de24c..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/plugins/twilio.po b/docs/locale/sr_RS/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index b17426dd..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/plugins/twitter.po b/docs/locale/sr_RS/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 515a12e6..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/points/points.po b/docs/locale/sr_RS/LC_MESSAGES/points/points.po deleted file mode 100644 index 584a443d..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/reports/reports.po b/docs/locale/sr_RS/LC_MESSAGES/reports/reports.po deleted file mode 100644 index af8b9a5c..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/sr_RS/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index b0b17d63..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/sr_RS/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index d35549c0..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/sr_RS/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 4db6449f..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/sr_RS/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 7f48a8b1..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/set_up/variables.po b/docs/locale/sr_RS/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index fec404ce..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/stages/stages.po b/docs/locale/sr_RS/LC_MESSAGES/stages/stages.po deleted file mode 100644 index d35f8db2..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/sr_RS/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/sr_RS/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index ce543190..00000000 --- a/docs/locale/sr_RS/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Serbian (Serbia) (https://www.transifex.com/mautic/teams/33223/sr_RS/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/authentication/authentication.po b/docs/locale/sv/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index eafc15ee..00000000 --- a/docs/locale/sv/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/builders/creating_themes.po b/docs/locale/sv/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 4607f029..00000000 --- a/docs/locale/sv/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/sv/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index b966c576..00000000 --- a/docs/locale/sv/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/sv/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 7f288197..00000000 --- a/docs/locale/sv/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/sv/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index a3fbad12..00000000 --- a/docs/locale/sv/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/sv/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 30a44e8a..00000000 --- a/docs/locale/sv/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/sv/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index d2c5002c..00000000 --- a/docs/locale/sv/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/sv/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 8a003b5b..00000000 --- a/docs/locale/sv/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/categories/categories-overview.po b/docs/locale/sv/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index b868892f..00000000 --- a/docs/locale/sv/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/channels/emails.po b/docs/locale/sv/LC_MESSAGES/channels/emails.po deleted file mode 100644 index f20d5b05..00000000 --- a/docs/locale/sv/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/channels/focus_items.po b/docs/locale/sv/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 39015a9a..00000000 --- a/docs/locale/sv/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/sv/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 606a6fbe..00000000 --- a/docs/locale/sv/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/channels/push_notifications.po b/docs/locale/sv/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index dfb6dbda..00000000 --- a/docs/locale/sv/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/channels/sms.po b/docs/locale/sv/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 34af952c..00000000 --- a/docs/locale/sv/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/sv/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 3fb5e2f2..00000000 --- a/docs/locale/sv/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/channels/utm_tags.po b/docs/locale/sv/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index a096144b..00000000 --- a/docs/locale/sv/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/channels/web_notifications.po b/docs/locale/sv/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 27a54ab0..00000000 --- a/docs/locale/sv/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/companies/companies_overview.po b/docs/locale/sv/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index dc38bf90..00000000 --- a/docs/locale/sv/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/components/assets.po b/docs/locale/sv/LC_MESSAGES/components/assets.po deleted file mode 100644 index 2b71abe5..00000000 --- a/docs/locale/sv/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/sv/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 090583d4..00000000 --- a/docs/locale/sv/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/components/forms.po b/docs/locale/sv/LC_MESSAGES/components/forms.po deleted file mode 100644 index f24c3d49..00000000 --- a/docs/locale/sv/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/components/landing_pages.po b/docs/locale/sv/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index b6256fe1..00000000 --- a/docs/locale/sv/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/configuration/settings.po b/docs/locale/sv/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 26af0220..00000000 --- a/docs/locale/sv/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/sv/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 9b0affa0..00000000 --- a/docs/locale/sv/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/sv/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 4e16432c..00000000 --- a/docs/locale/sv/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/contributing/contributing.po b/docs/locale/sv/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index fcd9d545..00000000 --- a/docs/locale/sv/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/sv/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 1dc1a2c1..00000000 --- a/docs/locale/sv/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/sv/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 9c78f345..00000000 --- a/docs/locale/sv/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/sv/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 17f6ca20..00000000 --- a/docs/locale/sv/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/sv/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index fd242bd2..00000000 --- a/docs/locale/sv/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/sv/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 7ed3fbf7..00000000 --- a/docs/locale/sv/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/index.po b/docs/locale/sv/LC_MESSAGES/index.po deleted file mode 100644 index fae0c8c2..00000000 --- a/docs/locale/sv/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/sv/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index c9023c97..00000000 --- a/docs/locale/sv/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/overview/overview.po b/docs/locale/sv/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 8cad0b42..00000000 --- a/docs/locale/sv/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/plugins/twilio.po b/docs/locale/sv/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 0d96bdbb..00000000 --- a/docs/locale/sv/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/plugins/twitter.po b/docs/locale/sv/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 74620262..00000000 --- a/docs/locale/sv/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/points/points.po b/docs/locale/sv/LC_MESSAGES/points/points.po deleted file mode 100644 index a141f7f6..00000000 --- a/docs/locale/sv/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/reports/reports.po b/docs/locale/sv/LC_MESSAGES/reports/reports.po deleted file mode 100644 index a4530a46..00000000 --- a/docs/locale/sv/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/sv/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index c13f8e00..00000000 --- a/docs/locale/sv/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/sv/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 31310167..00000000 --- a/docs/locale/sv/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/sv/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index e982f792..00000000 --- a/docs/locale/sv/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/sv/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 60ecc9aa..00000000 --- a/docs/locale/sv/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/set_up/variables.po b/docs/locale/sv/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 21e0478f..00000000 --- a/docs/locale/sv/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/stages/stages.po b/docs/locale/sv/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 455650e1..00000000 --- a/docs/locale/sv/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/sv/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/sv/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 5f4cbd2f..00000000 --- a/docs/locale/sv/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swedish (https://www.transifex.com/mautic/teams/33223/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/authentication/authentication.po b/docs/locale/sw_KE/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index bc435ee7..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/builders/creating_themes.po b/docs/locale/sw_KE/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 42546d97..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/sw_KE/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 614bf81d..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/sw_KE/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 17f27cd2..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/sw_KE/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index afd001f2..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/sw_KE/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 2aafb0eb..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/sw_KE/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 9ef8d6ae..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/sw_KE/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 857aaa06..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/categories/categories-overview.po b/docs/locale/sw_KE/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 93f99c5f..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/channels/emails.po b/docs/locale/sw_KE/LC_MESSAGES/channels/emails.po deleted file mode 100644 index bb63fffa..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/channels/focus_items.po b/docs/locale/sw_KE/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 79d8c429..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/sw_KE/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 8af17ca2..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/channels/push_notifications.po b/docs/locale/sw_KE/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index fd9b36ee..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/channels/sms.po b/docs/locale/sw_KE/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 32408278..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/sw_KE/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 7b2f41cb..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/channels/utm_tags.po b/docs/locale/sw_KE/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index b716eb27..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/channels/web_notifications.po b/docs/locale/sw_KE/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 7a2889ed..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/companies/companies_overview.po b/docs/locale/sw_KE/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index bde14c8a..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/components/assets.po b/docs/locale/sw_KE/LC_MESSAGES/components/assets.po deleted file mode 100644 index 3b909d63..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/sw_KE/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index cd53b2e3..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/components/forms.po b/docs/locale/sw_KE/LC_MESSAGES/components/forms.po deleted file mode 100644 index 0ffd9439..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/components/landing_pages.po b/docs/locale/sw_KE/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 903fb175..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/configuration/settings.po b/docs/locale/sw_KE/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 7eae6ff5..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/sw_KE/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 36060d42..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/sw_KE/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 7e9f6bc8..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/contributing/contributing.po b/docs/locale/sw_KE/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index db5bcd5d..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/sw_KE/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 49b2152c..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/sw_KE/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 54c594d4..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/sw_KE/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 83368a64..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/sw_KE/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 56e92ba7..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/sw_KE/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index aa3486ae..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/index.po b/docs/locale/sw_KE/LC_MESSAGES/index.po deleted file mode 100644 index 886430f6..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/sw_KE/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 5643d6b5..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/overview/overview.po b/docs/locale/sw_KE/LC_MESSAGES/overview/overview.po deleted file mode 100644 index fcd08e91..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/plugins/twilio.po b/docs/locale/sw_KE/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index a0ea472b..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/plugins/twitter.po b/docs/locale/sw_KE/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 60b2d1de..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/points/points.po b/docs/locale/sw_KE/LC_MESSAGES/points/points.po deleted file mode 100644 index 6b93d31b..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/reports/reports.po b/docs/locale/sw_KE/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 3365fa83..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/sw_KE/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 3f2bd8f2..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/sw_KE/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 7d5e32a5..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/sw_KE/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 5ba1f2e2..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/sw_KE/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index dbd30bf8..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/set_up/variables.po b/docs/locale/sw_KE/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 349f77e9..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/stages/stages.po b/docs/locale/sw_KE/LC_MESSAGES/stages/stages.po deleted file mode 100644 index b341c944..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/sw_KE/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/sw_KE/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 3e8c09e6..00000000 --- a/docs/locale/sw_KE/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Swahili (Kenya) (https://www.transifex.com/mautic/teams/33223/sw_KE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw_KE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/authentication/authentication.po b/docs/locale/th/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 49be471f..00000000 --- a/docs/locale/th/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/builders/creating_themes.po b/docs/locale/th/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 2af2b50d..00000000 --- a/docs/locale/th/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/th/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 7f07b470..00000000 --- a/docs/locale/th/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/th/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 12e47bfd..00000000 --- a/docs/locale/th/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/th/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 597781db..00000000 --- a/docs/locale/th/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/th/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index a4b62efc..00000000 --- a/docs/locale/th/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/th/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index ef1beade..00000000 --- a/docs/locale/th/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/th/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index ac60f0fc..00000000 --- a/docs/locale/th/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/categories/categories-overview.po b/docs/locale/th/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 1f3fd3a0..00000000 --- a/docs/locale/th/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/channels/emails.po b/docs/locale/th/LC_MESSAGES/channels/emails.po deleted file mode 100644 index e017a217..00000000 --- a/docs/locale/th/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/channels/focus_items.po b/docs/locale/th/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 499a41c8..00000000 --- a/docs/locale/th/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/th/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index f6daf897..00000000 --- a/docs/locale/th/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/channels/push_notifications.po b/docs/locale/th/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 909710cb..00000000 --- a/docs/locale/th/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/channels/sms.po b/docs/locale/th/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 38a2e589..00000000 --- a/docs/locale/th/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/th/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 3c0142c1..00000000 --- a/docs/locale/th/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/channels/utm_tags.po b/docs/locale/th/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 3a14e8d3..00000000 --- a/docs/locale/th/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/channels/web_notifications.po b/docs/locale/th/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 1aad964d..00000000 --- a/docs/locale/th/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/companies/companies_overview.po b/docs/locale/th/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 380b87c7..00000000 --- a/docs/locale/th/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/components/assets.po b/docs/locale/th/LC_MESSAGES/components/assets.po deleted file mode 100644 index 2bbe9855..00000000 --- a/docs/locale/th/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/th/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 9bd7d2c9..00000000 --- a/docs/locale/th/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/components/forms.po b/docs/locale/th/LC_MESSAGES/components/forms.po deleted file mode 100644 index 8369ad72..00000000 --- a/docs/locale/th/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/components/landing_pages.po b/docs/locale/th/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index c0fda582..00000000 --- a/docs/locale/th/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/configuration/settings.po b/docs/locale/th/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 186f8767..00000000 --- a/docs/locale/th/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/th/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 8e3df898..00000000 --- a/docs/locale/th/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/th/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 3d4fb8d5..00000000 --- a/docs/locale/th/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/contributing/contributing.po b/docs/locale/th/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 0ccb3251..00000000 --- a/docs/locale/th/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/th/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index c4080bf7..00000000 --- a/docs/locale/th/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/th/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index df16b0d1..00000000 --- a/docs/locale/th/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/th/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index ff129e6f..00000000 --- a/docs/locale/th/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/th/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 7cf1e9c0..00000000 --- a/docs/locale/th/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/th/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 963d03ed..00000000 --- a/docs/locale/th/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/index.po b/docs/locale/th/LC_MESSAGES/index.po deleted file mode 100644 index 875c26e0..00000000 --- a/docs/locale/th/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/th/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 6bfb1381..00000000 --- a/docs/locale/th/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/overview/overview.po b/docs/locale/th/LC_MESSAGES/overview/overview.po deleted file mode 100644 index d5648970..00000000 --- a/docs/locale/th/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/plugins/twilio.po b/docs/locale/th/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index dd24e4e1..00000000 --- a/docs/locale/th/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/plugins/twitter.po b/docs/locale/th/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 515fae33..00000000 --- a/docs/locale/th/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/points/points.po b/docs/locale/th/LC_MESSAGES/points/points.po deleted file mode 100644 index 66bc32a3..00000000 --- a/docs/locale/th/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/reports/reports.po b/docs/locale/th/LC_MESSAGES/reports/reports.po deleted file mode 100644 index c630cd0a..00000000 --- a/docs/locale/th/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/th/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 836c8a9c..00000000 --- a/docs/locale/th/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/th/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 027097d0..00000000 --- a/docs/locale/th/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/th/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index c37e3f6c..00000000 --- a/docs/locale/th/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/th/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 01cd9dd7..00000000 --- a/docs/locale/th/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/set_up/variables.po b/docs/locale/th/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 0bb160e3..00000000 --- a/docs/locale/th/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/stages/stages.po b/docs/locale/th/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 319f2b46..00000000 --- a/docs/locale/th/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/th/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/th/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index bff3488b..00000000 --- a/docs/locale/th/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Thai (https://www.transifex.com/mautic/teams/33223/th/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/authentication/authentication.po b/docs/locale/tr/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 11b271c6..00000000 --- a/docs/locale/tr/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/builders/creating_themes.po b/docs/locale/tr/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 84d0f27a..00000000 --- a/docs/locale/tr/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/tr/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 62747745..00000000 --- a/docs/locale/tr/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/tr/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 3811a234..00000000 --- a/docs/locale/tr/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/tr/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index a33f8f9c..00000000 --- a/docs/locale/tr/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/tr/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 043069f4..00000000 --- a/docs/locale/tr/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/tr/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index eca7d056..00000000 --- a/docs/locale/tr/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/tr/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index e6a5c662..00000000 --- a/docs/locale/tr/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/categories/categories-overview.po b/docs/locale/tr/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 43f1b3a4..00000000 --- a/docs/locale/tr/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/channels/emails.po b/docs/locale/tr/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 08d2f57b..00000000 --- a/docs/locale/tr/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/channels/focus_items.po b/docs/locale/tr/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index b28353e0..00000000 --- a/docs/locale/tr/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/tr/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index ea67c0db..00000000 --- a/docs/locale/tr/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/channels/push_notifications.po b/docs/locale/tr/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index b4e57bb8..00000000 --- a/docs/locale/tr/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/channels/sms.po b/docs/locale/tr/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 59005f80..00000000 --- a/docs/locale/tr/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/tr/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 459f9cec..00000000 --- a/docs/locale/tr/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/channels/utm_tags.po b/docs/locale/tr/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index cf5e3f77..00000000 --- a/docs/locale/tr/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/channels/web_notifications.po b/docs/locale/tr/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 519b73f6..00000000 --- a/docs/locale/tr/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/companies/companies_overview.po b/docs/locale/tr/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index e8197cd4..00000000 --- a/docs/locale/tr/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/components/assets.po b/docs/locale/tr/LC_MESSAGES/components/assets.po deleted file mode 100644 index 33905d35..00000000 --- a/docs/locale/tr/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/tr/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 5a3603be..00000000 --- a/docs/locale/tr/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/components/forms.po b/docs/locale/tr/LC_MESSAGES/components/forms.po deleted file mode 100644 index 0913c5e8..00000000 --- a/docs/locale/tr/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/components/landing_pages.po b/docs/locale/tr/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 1b752112..00000000 --- a/docs/locale/tr/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/configuration/settings.po b/docs/locale/tr/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 7654356a..00000000 --- a/docs/locale/tr/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/tr/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 7e276b1e..00000000 --- a/docs/locale/tr/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/tr/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index fc833785..00000000 --- a/docs/locale/tr/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/contributing/contributing.po b/docs/locale/tr/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 78b8a3e1..00000000 --- a/docs/locale/tr/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/tr/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 77c48f94..00000000 --- a/docs/locale/tr/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/tr/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index e1aa228f..00000000 --- a/docs/locale/tr/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/tr/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 850cdbad..00000000 --- a/docs/locale/tr/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/tr/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 6f71c9b8..00000000 --- a/docs/locale/tr/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/tr/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index a25002c9..00000000 --- a/docs/locale/tr/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/index.po b/docs/locale/tr/LC_MESSAGES/index.po deleted file mode 100644 index 0e47d7e6..00000000 --- a/docs/locale/tr/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/tr/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 69ca4dd1..00000000 --- a/docs/locale/tr/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/overview/overview.po b/docs/locale/tr/LC_MESSAGES/overview/overview.po deleted file mode 100644 index a8cff83b..00000000 --- a/docs/locale/tr/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/plugins/twilio.po b/docs/locale/tr/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 17f63bdc..00000000 --- a/docs/locale/tr/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/plugins/twitter.po b/docs/locale/tr/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 5e6f6865..00000000 --- a/docs/locale/tr/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/points/points.po b/docs/locale/tr/LC_MESSAGES/points/points.po deleted file mode 100644 index 8baaf0e2..00000000 --- a/docs/locale/tr/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/reports/reports.po b/docs/locale/tr/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 8d3d6c32..00000000 --- a/docs/locale/tr/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/tr/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 0b1ca7ed..00000000 --- a/docs/locale/tr/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/tr/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index b3dbb2f3..00000000 --- a/docs/locale/tr/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/tr/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 4d30240f..00000000 --- a/docs/locale/tr/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/tr/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 7fb17bf6..00000000 --- a/docs/locale/tr/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/set_up/variables.po b/docs/locale/tr/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index c66e34ed..00000000 --- a/docs/locale/tr/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/stages/stages.po b/docs/locale/tr/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 17271205..00000000 --- a/docs/locale/tr/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/tr/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/tr/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 7114aaa7..00000000 --- a/docs/locale/tr/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (https://www.transifex.com/mautic/teams/33223/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/authentication/authentication.po b/docs/locale/tr_TR/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 5299be6a..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/builders/creating_themes.po b/docs/locale/tr_TR/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 2f5956f0..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/tr_TR/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index e7d252cf..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/tr_TR/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 1640d5a1..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/tr_TR/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 1d009806..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/tr_TR/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 096c38eb..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/tr_TR/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index deaa683c..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/tr_TR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 0631b748..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/categories/categories-overview.po b/docs/locale/tr_TR/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 879a0702..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/channels/emails.po b/docs/locale/tr_TR/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 61e733ca..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/channels/focus_items.po b/docs/locale/tr_TR/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 0eb6745c..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/tr_TR/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index c21f7d5c..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/channels/push_notifications.po b/docs/locale/tr_TR/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index e62bfcce..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/channels/sms.po b/docs/locale/tr_TR/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 0c67b001..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/tr_TR/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 2882aee0..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/channels/utm_tags.po b/docs/locale/tr_TR/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 35ee5467..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/channels/web_notifications.po b/docs/locale/tr_TR/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 98c193b3..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/companies/companies_overview.po b/docs/locale/tr_TR/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 5e01b4b1..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/components/assets.po b/docs/locale/tr_TR/LC_MESSAGES/components/assets.po deleted file mode 100644 index 2c156d48..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/tr_TR/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 80ad79eb..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/components/forms.po b/docs/locale/tr_TR/LC_MESSAGES/components/forms.po deleted file mode 100644 index 6eb09a07..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/components/landing_pages.po b/docs/locale/tr_TR/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 4a8ea283..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/configuration/settings.po b/docs/locale/tr_TR/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 616bbee9..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/tr_TR/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 319ed134..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/tr_TR/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index a38137d0..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/contributing/contributing.po b/docs/locale/tr_TR/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 98f5f54e..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/tr_TR/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index f8457a46..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/tr_TR/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index d648d0e5..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/tr_TR/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 259c87ab..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/tr_TR/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index ea70c9df..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/tr_TR/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 14043a27..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/index.po b/docs/locale/tr_TR/LC_MESSAGES/index.po deleted file mode 100644 index 03cc4c30..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/tr_TR/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 05e8edd1..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/overview/overview.po b/docs/locale/tr_TR/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 89155f90..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/plugins/twilio.po b/docs/locale/tr_TR/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 4a5d4531..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/plugins/twitter.po b/docs/locale/tr_TR/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 578cef76..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/points/points.po b/docs/locale/tr_TR/LC_MESSAGES/points/points.po deleted file mode 100644 index acc7ae9d..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/reports/reports.po b/docs/locale/tr_TR/LC_MESSAGES/reports/reports.po deleted file mode 100644 index b4592b7b..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/tr_TR/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index f732b7e8..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/tr_TR/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 4472a0a2..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/tr_TR/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index a843f09b..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/tr_TR/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index ded749c8..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/set_up/variables.po b/docs/locale/tr_TR/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 5b14e038..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/stages/stages.po b/docs/locale/tr_TR/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 806f6e56..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/tr_TR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/tr_TR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index b0ec931b..00000000 --- a/docs/locale/tr_TR/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/mautic/teams/33223/tr_TR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/authentication/authentication.po b/docs/locale/uk/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index f8e54b8b..00000000 --- a/docs/locale/uk/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/builders/creating_themes.po b/docs/locale/uk/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 8d3da10f..00000000 --- a/docs/locale/uk/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/uk/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 0be93033..00000000 --- a/docs/locale/uk/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/uk/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 29276383..00000000 --- a/docs/locale/uk/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/uk/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 80adfe39..00000000 --- a/docs/locale/uk/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/uk/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 378426bc..00000000 --- a/docs/locale/uk/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/uk/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 898d3969..00000000 --- a/docs/locale/uk/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/uk/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index ec590f58..00000000 --- a/docs/locale/uk/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/categories/categories-overview.po b/docs/locale/uk/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index fed865c9..00000000 --- a/docs/locale/uk/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/channels/emails.po b/docs/locale/uk/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 32dfa4d6..00000000 --- a/docs/locale/uk/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/channels/focus_items.po b/docs/locale/uk/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 574e008b..00000000 --- a/docs/locale/uk/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/uk/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index e1c143a5..00000000 --- a/docs/locale/uk/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/channels/push_notifications.po b/docs/locale/uk/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 4db2e4b4..00000000 --- a/docs/locale/uk/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/channels/sms.po b/docs/locale/uk/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 42f1f0fb..00000000 --- a/docs/locale/uk/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/uk/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index b83199d4..00000000 --- a/docs/locale/uk/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/channels/utm_tags.po b/docs/locale/uk/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 290cb5b9..00000000 --- a/docs/locale/uk/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/channels/web_notifications.po b/docs/locale/uk/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index f17e6e97..00000000 --- a/docs/locale/uk/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/companies/companies_overview.po b/docs/locale/uk/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 1f088b3d..00000000 --- a/docs/locale/uk/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/components/assets.po b/docs/locale/uk/LC_MESSAGES/components/assets.po deleted file mode 100644 index a26cb683..00000000 --- a/docs/locale/uk/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/uk/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 3135414f..00000000 --- a/docs/locale/uk/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/components/forms.po b/docs/locale/uk/LC_MESSAGES/components/forms.po deleted file mode 100644 index c5ee0dd3..00000000 --- a/docs/locale/uk/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/components/landing_pages.po b/docs/locale/uk/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index d27e877f..00000000 --- a/docs/locale/uk/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/configuration/settings.po b/docs/locale/uk/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index cc548a4f..00000000 --- a/docs/locale/uk/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/uk/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index d19f90ae..00000000 --- a/docs/locale/uk/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/uk/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 8733fbe9..00000000 --- a/docs/locale/uk/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/contributing/contributing.po b/docs/locale/uk/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 0a6c75bf..00000000 --- a/docs/locale/uk/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/uk/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index e8892d46..00000000 --- a/docs/locale/uk/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/uk/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 8f9a2be6..00000000 --- a/docs/locale/uk/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/uk/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index c8dc352b..00000000 --- a/docs/locale/uk/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/uk/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index f122fdb5..00000000 --- a/docs/locale/uk/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/uk/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index a2b3c392..00000000 --- a/docs/locale/uk/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/index.po b/docs/locale/uk/LC_MESSAGES/index.po deleted file mode 100644 index 1524f171..00000000 --- a/docs/locale/uk/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/uk/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index ec5af613..00000000 --- a/docs/locale/uk/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/overview/overview.po b/docs/locale/uk/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 3bcf1d67..00000000 --- a/docs/locale/uk/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/plugins/twilio.po b/docs/locale/uk/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 398f4294..00000000 --- a/docs/locale/uk/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/plugins/twitter.po b/docs/locale/uk/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index d5c03d05..00000000 --- a/docs/locale/uk/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/points/points.po b/docs/locale/uk/LC_MESSAGES/points/points.po deleted file mode 100644 index 20c7a4d3..00000000 --- a/docs/locale/uk/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/reports/reports.po b/docs/locale/uk/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 065b9bd8..00000000 --- a/docs/locale/uk/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/uk/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 7aa66027..00000000 --- a/docs/locale/uk/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/uk/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index f5d4be5a..00000000 --- a/docs/locale/uk/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/uk/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 7dc94847..00000000 --- a/docs/locale/uk/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/uk/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 04b71a0e..00000000 --- a/docs/locale/uk/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/set_up/variables.po b/docs/locale/uk/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index f2c9cc70..00000000 --- a/docs/locale/uk/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/stages/stages.po b/docs/locale/uk/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 88fbd11b..00000000 --- a/docs/locale/uk/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/uk/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/uk/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 08ed1b64..00000000 --- a/docs/locale/uk/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (https://www.transifex.com/mautic/teams/33223/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/authentication/authentication.po b/docs/locale/uk_UA/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index a85bd0e9..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/builders/creating_themes.po b/docs/locale/uk_UA/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 314e27da..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/uk_UA/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 97e0cbc8..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/uk_UA/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 57413db1..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/uk_UA/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 752b2a21..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/uk_UA/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index a03d6b8f..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/uk_UA/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 582b7f6f..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/uk_UA/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index c707086b..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/categories/categories-overview.po b/docs/locale/uk_UA/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index aa8afe17..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/channels/emails.po b/docs/locale/uk_UA/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 8bc4b4ff..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/channels/focus_items.po b/docs/locale/uk_UA/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index d582dba1..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/uk_UA/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 6cbc6d67..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/channels/push_notifications.po b/docs/locale/uk_UA/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 9774a88e..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/channels/sms.po b/docs/locale/uk_UA/LC_MESSAGES/channels/sms.po deleted file mode 100644 index ecb40490..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/uk_UA/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 899adf28..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/channels/utm_tags.po b/docs/locale/uk_UA/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index bbc8f379..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/channels/web_notifications.po b/docs/locale/uk_UA/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index e0d08b07..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/companies/companies_overview.po b/docs/locale/uk_UA/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 9ebeeaf0..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/components/assets.po b/docs/locale/uk_UA/LC_MESSAGES/components/assets.po deleted file mode 100644 index 825bb145..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/uk_UA/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 586f71c9..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/components/forms.po b/docs/locale/uk_UA/LC_MESSAGES/components/forms.po deleted file mode 100644 index 68326018..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/components/landing_pages.po b/docs/locale/uk_UA/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index d344db4b..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/configuration/settings.po b/docs/locale/uk_UA/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 99b9feab..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/uk_UA/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index d8bb7459..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/uk_UA/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 8febc731..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/contributing/contributing.po b/docs/locale/uk_UA/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 3d10da43..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/uk_UA/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index a4cf0367..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/uk_UA/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index fcace484..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/uk_UA/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 3864b590..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/uk_UA/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index c80fa8d5..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/uk_UA/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index d83474a1..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/index.po b/docs/locale/uk_UA/LC_MESSAGES/index.po deleted file mode 100644 index adf2611c..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/uk_UA/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 54311fff..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/overview/overview.po b/docs/locale/uk_UA/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 285f6843..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/plugins/twilio.po b/docs/locale/uk_UA/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index f5bc0f53..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/plugins/twitter.po b/docs/locale/uk_UA/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index a3d59d7d..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/points/points.po b/docs/locale/uk_UA/LC_MESSAGES/points/points.po deleted file mode 100644 index 9a97d29e..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/reports/reports.po b/docs/locale/uk_UA/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 23896685..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/uk_UA/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 29e7f923..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/uk_UA/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index ddaf3776..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/uk_UA/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index d840da34..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/uk_UA/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 762b8ea6..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/set_up/variables.po b/docs/locale/uk_UA/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 5718c6a6..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/stages/stages.po b/docs/locale/uk_UA/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 9e611870..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/uk_UA/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 43c7cda3..00000000 --- a/docs/locale/uk_UA/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/mautic/teams/33223/uk_UA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\n" -"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/authentication/authentication.po b/docs/locale/vi/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index b822a43d..00000000 --- a/docs/locale/vi/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/builders/creating_themes.po b/docs/locale/vi/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index d16997cb..00000000 --- a/docs/locale/vi/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/vi/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 0f1b4738..00000000 --- a/docs/locale/vi/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/vi/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 6c819876..00000000 --- a/docs/locale/vi/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/vi/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index c642a3fb..00000000 --- a/docs/locale/vi/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/vi/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 06a76126..00000000 --- a/docs/locale/vi/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/vi/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index defcd80c..00000000 --- a/docs/locale/vi/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/vi/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index b875c238..00000000 --- a/docs/locale/vi/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/categories/categories-overview.po b/docs/locale/vi/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index acb8e9e7..00000000 --- a/docs/locale/vi/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/channels/emails.po b/docs/locale/vi/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 594b16d1..00000000 --- a/docs/locale/vi/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/channels/focus_items.po b/docs/locale/vi/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 7c66f857..00000000 --- a/docs/locale/vi/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/vi/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 4919ef63..00000000 --- a/docs/locale/vi/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/channels/push_notifications.po b/docs/locale/vi/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 8436aa4c..00000000 --- a/docs/locale/vi/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/channels/sms.po b/docs/locale/vi/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 3de3bd55..00000000 --- a/docs/locale/vi/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/vi/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 1e950fda..00000000 --- a/docs/locale/vi/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/channels/utm_tags.po b/docs/locale/vi/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index d965833c..00000000 --- a/docs/locale/vi/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/channels/web_notifications.po b/docs/locale/vi/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 9e5aa336..00000000 --- a/docs/locale/vi/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/companies/companies_overview.po b/docs/locale/vi/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 89ea61aa..00000000 --- a/docs/locale/vi/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/components/assets.po b/docs/locale/vi/LC_MESSAGES/components/assets.po deleted file mode 100644 index a24a11d0..00000000 --- a/docs/locale/vi/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/vi/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index a0f1eb56..00000000 --- a/docs/locale/vi/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/components/forms.po b/docs/locale/vi/LC_MESSAGES/components/forms.po deleted file mode 100644 index 3054baa3..00000000 --- a/docs/locale/vi/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/components/landing_pages.po b/docs/locale/vi/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 1684d483..00000000 --- a/docs/locale/vi/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/configuration/settings.po b/docs/locale/vi/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index d0510da9..00000000 --- a/docs/locale/vi/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/vi/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 7c94bec4..00000000 --- a/docs/locale/vi/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/vi/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index c3f4345d..00000000 --- a/docs/locale/vi/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/contributing/contributing.po b/docs/locale/vi/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 9b56a770..00000000 --- a/docs/locale/vi/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/vi/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 5e41874a..00000000 --- a/docs/locale/vi/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/vi/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index e941e11b..00000000 --- a/docs/locale/vi/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/vi/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index d96cac93..00000000 --- a/docs/locale/vi/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/vi/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index ecef1f2d..00000000 --- a/docs/locale/vi/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/vi/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index e45604aa..00000000 --- a/docs/locale/vi/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/index.po b/docs/locale/vi/LC_MESSAGES/index.po deleted file mode 100644 index b3e13bc4..00000000 --- a/docs/locale/vi/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/vi/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 98209085..00000000 --- a/docs/locale/vi/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/overview/overview.po b/docs/locale/vi/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 4db024af..00000000 --- a/docs/locale/vi/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/plugins/twilio.po b/docs/locale/vi/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 6c16aace..00000000 --- a/docs/locale/vi/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/plugins/twitter.po b/docs/locale/vi/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 4bbf0634..00000000 --- a/docs/locale/vi/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/points/points.po b/docs/locale/vi/LC_MESSAGES/points/points.po deleted file mode 100644 index 81b62d71..00000000 --- a/docs/locale/vi/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/reports/reports.po b/docs/locale/vi/LC_MESSAGES/reports/reports.po deleted file mode 100644 index f0c4417d..00000000 --- a/docs/locale/vi/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/vi/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 4f5297c0..00000000 --- a/docs/locale/vi/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/vi/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 4c101d2b..00000000 --- a/docs/locale/vi/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/vi/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 22376f8f..00000000 --- a/docs/locale/vi/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/vi/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 5efb19ce..00000000 --- a/docs/locale/vi/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/set_up/variables.po b/docs/locale/vi/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index e5dd8b28..00000000 --- a/docs/locale/vi/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/stages/stages.po b/docs/locale/vi/LC_MESSAGES/stages/stages.po deleted file mode 100644 index a43988c1..00000000 --- a/docs/locale/vi/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/vi/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/vi/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 83652d7f..00000000 --- a/docs/locale/vi/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (https://www.transifex.com/mautic/teams/33223/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/authentication/authentication.po b/docs/locale/vi_VN/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 0470e9a9..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/builders/creating_themes.po b/docs/locale/vi_VN/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 134b7708..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/vi_VN/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index 1de33e00..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/vi_VN/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 1cccd89a..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/vi_VN/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 128f05da..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/vi_VN/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 160df5d5..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/vi_VN/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 2f0913ef..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/vi_VN/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 36291405..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/categories/categories-overview.po b/docs/locale/vi_VN/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index cdd22334..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/channels/emails.po b/docs/locale/vi_VN/LC_MESSAGES/channels/emails.po deleted file mode 100644 index a965e871..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/channels/focus_items.po b/docs/locale/vi_VN/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index f3425008..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/vi_VN/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index a121e15a..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/channels/push_notifications.po b/docs/locale/vi_VN/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 0b4ef037..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/channels/sms.po b/docs/locale/vi_VN/LC_MESSAGES/channels/sms.po deleted file mode 100644 index fe58ec74..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/vi_VN/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 966bf44f..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/channels/utm_tags.po b/docs/locale/vi_VN/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index dd3b13d6..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/channels/web_notifications.po b/docs/locale/vi_VN/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 9b251bcb..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/companies/companies_overview.po b/docs/locale/vi_VN/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index 09c8cdfb..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/components/assets.po b/docs/locale/vi_VN/LC_MESSAGES/components/assets.po deleted file mode 100644 index cc9a5ae6..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/vi_VN/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 6dd36d0e..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/components/forms.po b/docs/locale/vi_VN/LC_MESSAGES/components/forms.po deleted file mode 100644 index 512cfa3f..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/components/landing_pages.po b/docs/locale/vi_VN/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 88f5b3db..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/configuration/settings.po b/docs/locale/vi_VN/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 14b62158..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/vi_VN/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 2f249d1c..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/vi_VN/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index e37a8916..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/contributing/contributing.po b/docs/locale/vi_VN/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 6f901141..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/vi_VN/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 2559d57d..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/vi_VN/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 1dfa28b7..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/vi_VN/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 25db29f9..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/vi_VN/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index c7cc6e36..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/vi_VN/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 4c979076..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/index.po b/docs/locale/vi_VN/LC_MESSAGES/index.po deleted file mode 100644 index 0988279f..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/vi_VN/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index e6d90ef6..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/overview/overview.po b/docs/locale/vi_VN/LC_MESSAGES/overview/overview.po deleted file mode 100644 index 3e8e66cc..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/plugins/twilio.po b/docs/locale/vi_VN/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 792a53db..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/plugins/twitter.po b/docs/locale/vi_VN/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 5ac04758..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/points/points.po b/docs/locale/vi_VN/LC_MESSAGES/points/points.po deleted file mode 100644 index 65fd0cb5..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/reports/reports.po b/docs/locale/vi_VN/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 68702e84..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/vi_VN/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 661d2b0e..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/vi_VN/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index d5993868..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/vi_VN/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 296a9205..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/vi_VN/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 6d4de7fc..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/set_up/variables.po b/docs/locale/vi_VN/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 3897fd37..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/stages/stages.po b/docs/locale/vi_VN/LC_MESSAGES/stages/stages.po deleted file mode 100644 index f4be7c1b..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/vi_VN/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/vi_VN/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 0031b13d..00000000 --- a/docs/locale/vi_VN/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/mautic/teams/33223/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/authentication/authentication.po b/docs/locale/zh-Hans/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 2c27d466..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/builders/creating_themes.po b/docs/locale/zh-Hans/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 262c9210..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/zh-Hans/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index c0f685fc..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/zh-Hans/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 7458cb47..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/zh-Hans/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 9aaf7cd6..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/zh-Hans/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 433be52c..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/zh-Hans/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index 8c451948..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/zh-Hans/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 936f21d0..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/categories/categories-overview.po b/docs/locale/zh-Hans/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 2c9c872b..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/channels/emails.po b/docs/locale/zh-Hans/LC_MESSAGES/channels/emails.po deleted file mode 100644 index b4b5cd59..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/channels/focus_items.po b/docs/locale/zh-Hans/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index e3382ee6..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/zh-Hans/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 2cc49e46..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/channels/push_notifications.po b/docs/locale/zh-Hans/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 21ab14b2..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/channels/sms.po b/docs/locale/zh-Hans/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 690e9d2a..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/zh-Hans/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index d9be68fd..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/channels/utm_tags.po b/docs/locale/zh-Hans/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index c71a30e5..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/channels/web_notifications.po b/docs/locale/zh-Hans/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index 9033d7f9..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/companies/companies_overview.po b/docs/locale/zh-Hans/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index c1dac032..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/components/assets.po b/docs/locale/zh-Hans/LC_MESSAGES/components/assets.po deleted file mode 100644 index beca2c12..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/zh-Hans/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 56e181d2..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/components/forms.po b/docs/locale/zh-Hans/LC_MESSAGES/components/forms.po deleted file mode 100644 index 2548c30d..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/components/landing_pages.po b/docs/locale/zh-Hans/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 41067041..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/configuration/settings.po b/docs/locale/zh-Hans/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index f832c7c2..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/zh-Hans/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index e1625452..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/zh-Hans/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index c3c63e78..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/contributing/contributing.po b/docs/locale/zh-Hans/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index d8ee4ff7..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/zh-Hans/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index e80b665c..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/zh-Hans/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 1e232216..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/zh-Hans/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 4ffa808a..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/zh-Hans/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index ba0ccb88..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/zh-Hans/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 5f2c0113..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/index.po b/docs/locale/zh-Hans/LC_MESSAGES/index.po deleted file mode 100644 index fc91aa0a..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/zh-Hans/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index c95d862e..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/overview/overview.po b/docs/locale/zh-Hans/LC_MESSAGES/overview/overview.po deleted file mode 100644 index bc4ba594..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/plugins/twilio.po b/docs/locale/zh-Hans/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index f2872772..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/plugins/twitter.po b/docs/locale/zh-Hans/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 1facdc70..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/points/points.po b/docs/locale/zh-Hans/LC_MESSAGES/points/points.po deleted file mode 100644 index eaa4df9d..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/reports/reports.po b/docs/locale/zh-Hans/LC_MESSAGES/reports/reports.po deleted file mode 100644 index d41b7302..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/zh-Hans/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 0e70bbce..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/zh-Hans/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 89f6467e..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/zh-Hans/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 1116a68d..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/zh-Hans/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 12912933..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/set_up/variables.po b/docs/locale/zh-Hans/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 6450b737..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/stages/stages.po b/docs/locale/zh-Hans/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 42501bd5..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/zh-Hans/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/zh-Hans/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 803a4af9..00000000 --- a/docs/locale/zh-Hans/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese Simplified (https://www.transifex.com/mautic/teams/33223/zh-Hans/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh-Hans\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/authentication/authentication.po b/docs/locale/zh_CN/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index 7bd6d43c..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/builders/creating_themes.po b/docs/locale/zh_CN/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index e1c02a4d..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/zh_CN/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index a65f4951..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/zh_CN/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 6b4ea10c..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/zh_CN/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index a79ee461..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/zh_CN/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 5805385d..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/zh_CN/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index cd3869b0..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/zh_CN/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index 40fe3d35..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/categories/categories-overview.po b/docs/locale/zh_CN/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index 2f39c179..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/channels/emails.po b/docs/locale/zh_CN/LC_MESSAGES/channels/emails.po deleted file mode 100644 index ba987a19..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/channels/focus_items.po b/docs/locale/zh_CN/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index 5ca13e57..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/zh_CN/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index 387b9d09..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/channels/push_notifications.po b/docs/locale/zh_CN/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 872d427e..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/channels/sms.po b/docs/locale/zh_CN/LC_MESSAGES/channels/sms.po deleted file mode 100644 index 8c48b820..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/zh_CN/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 2bd1a6de..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/channels/utm_tags.po b/docs/locale/zh_CN/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 5583f1e4..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/channels/web_notifications.po b/docs/locale/zh_CN/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index b94df8bf..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/companies/companies_overview.po b/docs/locale/zh_CN/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index b21636be..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/components/assets.po b/docs/locale/zh_CN/LC_MESSAGES/components/assets.po deleted file mode 100644 index 52ae69bc..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/zh_CN/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 0825dae2..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/components/forms.po b/docs/locale/zh_CN/LC_MESSAGES/components/forms.po deleted file mode 100644 index 51b51e44..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/components/landing_pages.po b/docs/locale/zh_CN/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index 2a12d2c4..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/configuration/settings.po b/docs/locale/zh_CN/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 449f3741..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/zh_CN/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index bbff0b6b..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/zh_CN/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 0e01930e..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/contributing/contributing.po b/docs/locale/zh_CN/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 3ee82bfe..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/zh_CN/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 75482be1..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/zh_CN/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index e765de66..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/zh_CN/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index 44ff735f..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/zh_CN/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index b7ccfed2..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/zh_CN/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 8ab5b215..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/index.po b/docs/locale/zh_CN/LC_MESSAGES/index.po deleted file mode 100644 index 302461b2..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/zh_CN/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 14fcc3f4..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/overview/overview.po b/docs/locale/zh_CN/LC_MESSAGES/overview/overview.po deleted file mode 100644 index e7d44e24..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/plugins/twilio.po b/docs/locale/zh_CN/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 13bbf53c..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/plugins/twitter.po b/docs/locale/zh_CN/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 4a60441c..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/points/points.po b/docs/locale/zh_CN/LC_MESSAGES/points/points.po deleted file mode 100644 index a45a0b5a..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/reports/reports.po b/docs/locale/zh_CN/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 2bb21a41..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/zh_CN/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index f8daa45d..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/zh_CN/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index 4b26b566..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/zh_CN/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 7522bd17..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/zh_CN/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index bf1c18ff..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/set_up/variables.po b/docs/locale/zh_CN/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index daac6000..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/stages/stages.po b/docs/locale/zh_CN/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 030d649e..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/zh_CN/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/zh_CN/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 8c8e4733..00000000 --- a/docs/locale/zh_CN/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (China) (https://www.transifex.com/mautic/teams/33223/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/authentication/authentication.po b/docs/locale/zh_TW/LC_MESSAGES/authentication/authentication.po deleted file mode 100644 index de6498ae..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/authentication/authentication.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../authentication/authentication.rst:2 09a20d5f1c5d40338172cd9ef3ac03c2 -msgid "Authentication" -msgstr "" - -#: ../../authentication/authentication.rst:4 68204451372d463d982865bb94be7f83 -msgid "" -"Mautic uses basic authentication for Users, however there is the ability to " -"integrate with a SAML SSO - Single Sign-On - provider." -msgstr "" - -#: ../../authentication/authentication.rst:9 60cc733baf694c6a830783d02d4c381a -msgid "SAML Single Sign On" -msgstr "" - -#: ../../authentication/authentication.rst:13 64c495b7fbf5423fa2a496d22162fe02 -msgid "" -"SAML is a single sign on protocol that allows single sign on and User " -"creation in Mautic using a third party User source called an identity " -"provider (IDP)." -msgstr "" - -#: ../../authentication/authentication.rst:16 4d1612c8bc594be4b8737fb3383ecddd -msgid "Turning on SAML" -msgstr "" - -#: ../../authentication/authentication.rst:17 307ff24ff37c4f35b22b5423060854d7 -msgid "" -"To turn on SAML support in Mautic, you first need the IDP's metadata XML " -"which they provide. If it's a URL, browse to the URL then save the content " -"into an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:19 ab1e1bd71cc042988b80253626ba5f78 -msgid "" -"Go to Configuration -> User/Authentication Settings. Then upload this file " -"as the Identity Provider Metadata file." -msgstr "" - -#: ../../authentication/authentication.rst:21 43e1cf229d5e4a848a6a1831601dfede -msgid "" -"It's recommended to create a non-Admin Role as the default Role for created " -"Users. Select this Role in the 'Default Role for created Users' dropdown." -msgstr "" - -#: ../../authentication/authentication.rst:24 c34e5e64633648f4a226f1b82f8ebc8a -msgid "Configuring the IDP" -msgstr "" - -#: ../../authentication/authentication.rst:25 cfb9d691fa264ec3b451252ccb2075dc -msgid "The IDP may ask for the following settings:" -msgstr "" - -#: ../../authentication/authentication.rst:27 824136f8d46d4ca28f0e988f114f4ad5 -msgid "" -"Entity ID - this is site URL, displayed at the top of User/Authentication " -"Settings. Copy this exactly 'as is' to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:29 5660e5e743c9423ea189d7797eb14cce -msgid "" -"Service Provider Metadata - if the provider requires a URL, use " -"``https://example.com/saml/metadata.xml``. To use as a file rather than a " -"URL, browse to that URL and save the content as an XML file." -msgstr "" - -#: ../../authentication/authentication.rst:31 8cd79d28bdcc459389e4182838a07f63 -msgid "" -"Assertion Consumer Service - Use ``https://example.com/s/saml/login_check``." -msgstr "" - -#: ../../authentication/authentication.rst:33 25a7f3b09a9847c59ccd652326de2773 -msgid "" -"Issuer - this should come from the IDP but is often configurable. If it's a " -"URL, be sure that the scheme - ``http://`` and ``https://`` - aren't part of" -" it." -msgstr "" - -#: ../../authentication/authentication.rst:35 06643bf04a814e25aa12221af960f7aa -msgid "" -"Verify request signatures or a SSL certificate - If the IDP supports " -"encrypting and validating request signatures from Mautic to the IDP, " -"generate a self signed SSL certificate. Upload the certificate and private " -"key through Mautic's Configuration -> User/Authentication Settings under the" -" 'Use a custom X.509 certificate and private key to secure communication " -"between Mautic and the IDP' section. Then upload the certificate to the IDP." -msgstr "" - -#: ../../authentication/authentication.rst:37 1543ff77630f40a285427c3d229540d4 -msgid "" -"Custom attributes - Mautic requires three custom attributes in the IDP " -"responses for the User Email, first name and last name. Username is also " -"supported but is optional. Configure the attribute names used by the IDP in " -"Mautic's Configuration -> User/Authentication Settings under the 'Enter the " -"names of the attributes the configured IDP uses for the following Mautic " -"User fields' section." -msgstr "" - -#: ../../authentication/authentication.rst:40 fb7778f7f80247c29641814d0887496a -msgid "Logging in" -msgstr "" - -#: ../../authentication/authentication.rst:42 9607c7bcd30e4561897dbb7a9642e40d -msgid "" -"Once configured with the IDP and the IDP with Mautic, Mautic redirects all " -"logins to the IDP's login. /s/login is still available for direct logins but" -" you have to access it directly." -msgstr "" - -#: ../../authentication/authentication.rst:44 6ff79ab9067447f39f2dce9be2072331 -msgid "" -"Login to the IDP, which then redirects you back to Mautic. If the exchange " -"is successful Mautic creates a User if it doesn't already exist, and logs " -"the User into the system." -msgstr "" - -#: ../../authentication/authentication.rst:47 32517f1a4c6b4eac9f388375a33686f8 -msgid "Turning off SAML" -msgstr "" - -#: ../../authentication/authentication.rst:49 e020f68a1989462da75befa1767f2b1c -msgid "" -"To turn off SAML, click the Remove link to the right of the Identity " -"provider metadata file label." -msgstr "" - -#: ../../authentication/authentication.rstNone -#: 0736bae8596a41b78576497f70021c90 -msgid "Screenshot of the authentication settings section" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/builders/creating_themes.po b/docs/locale/zh_TW/LC_MESSAGES/builders/creating_themes.po deleted file mode 100644 index 8bc5aeb1..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/builders/creating_themes.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/creating_themes.rst:4 742d6354a9404db18dd1cdaf01049311 -msgid "Creating Themes" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/builders/grapesjs_builder.po b/docs/locale/zh_TW/LC_MESSAGES/builders/grapesjs_builder.po deleted file mode 100644 index e8d58fe2..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/builders/grapesjs_builder.po +++ /dev/null @@ -1,335 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../builders/grapesjs_builder.rst:4 f1692a0c91f64e42bf35d71dbe854140 -msgid "Email & Landing Page Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:8 48100a31a346476d8158385ec4485b74 -msgid "" -"Since :xref:`Mautic 3`, Mautic has shipped with an updated, modern builder " -"for creating Emails and landing pages. In :xref:`Mautic 4` it's the default " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:12 60a1957a09bc4ae8bed0951195cdf4d2 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file. Read on for further details." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:17 91a1857050e047e2ba1deb96b19b9e19 -msgid "About GrapesJS" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:21 66d97f41264b4197aa90d5e98c3c00a0 -msgid "" -":xref:`Webmecanik` initiated the new Email and landing page as an MVP. After" -" developing and improving it using the open source :xref:`GrapesJS` " -"framework, :xref:`Aivie` kindly made it available to the Mautic community." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:23 048d672ea34240ad90d774821bde2c8f -msgid "" -"GrapesJS is an open source, multi-purpose, Web Builder Framework which " -"combines different tools and features with the goal to help build HTML " -"templates without any knowledge of coding." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:26 e36f19e27d57492ca04f616797313cc7 -msgid "Available end-user features" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:29 38991e7148704567bda523129ac4cb75 -msgid "Drag & drop built-in blocks" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:31 64cec4bd56eb4e428f4034338aab92b9 -msgid "" -"GrapesJS comes with a set of built-in blocks, in this way you're able to " -"build your templates faster. If the default set isn't enough you can always " -"add your own custom blocks." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:34 5faf753fb61e4e1fb4f98f300c889779 -msgid "Limitless styling" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:36 786202a0b83a46718e67eb905c6b2531 -msgid "" -"GrapesJS implements a simple and powerful Style Manager module which enables" -" independent styling of any Component inside the canvas. It's also possible " -"to configure it to use any of the CSS properties." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:39 48b2249b3b9d4133b74156834d3bbf45 -msgid "Responsive design" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:41 b68021dfcd704fb98256310d1b8cb4e3 -msgid "" -"GrapesJS gives you all the necessary tools you need to optimize your " -"templates to look awesomely on any device. In this way you're able to " -"provide various viewing experiences. In case you require more device " -"options, you can easily add them to the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:44 d9f614e2b0654da9a5ee789735a84f17 -msgid "The structure always under control" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:46 ddefbcfb5c004fc39b64df00c2936f3c -msgid "" -"You can nest Components as much as you can but when the structure begins to " -"grow the Layer Manager comes very handy. It allows you to manage and " -"rearrange your elements extremely fast, focusing always on the architecture " -"of your structure." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:49 eb5593e7ded74739a5ff1ebb38e731ed -msgid "The code is there when you need it" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:51 4314c03bb7ab4470bdb53f7f3ec2b333 -msgid "" -"You don't have to care about the code, but it's always there, available for " -"you. When it's done, you can grab it and use it wherever you want. " -"Developers could also implement their own storage interfaces to use inside " -"the editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:54 831f9f3b8f1c4685b42812e0d7eae39b -msgid "Asset manager" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:56 1854706c1e5f4ee78571628bde36078d -msgid "" -"With the Asset Manager is easier to organize your media files and it's " -"enough to double click the image to change it." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:59 8264268df8d84803af9be831bb8cf88b -msgid "About the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:62 b2c1270cc76448b78672741fe85570b0 -msgid "Enabling the builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:64 0b414e7aa4524abb8c6aabcc7793bd1f -msgid "" -"Since Mautic 3.3-RC1 the builder is available to use in the Plugins section " -"of Mautic." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:66 041154e363d94dd1a27fd31181bf9f22 -msgid "" -"Go to the Settings by clicking the cog wheel at the top right > Plugins > " -"GrapesJS and click the GrapesJS icon." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:68 c1390e20c45b445aac98566733e722c7 -msgid "Change the slider to Yes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:70 de0672b49d6f42a9bba2c5de72f5f8f9 -msgid "" -"**Clear your Mautic** cache located in var/cache and refresh the Landing " -"Page before you can work with the new GrapesJS builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:72 397888407d504d738489c387de35fc9d -msgid "Some browsers may also require you to clear the browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:74 bdc1397bcd4f43afa7482b52de0a2bbb -msgid "" -"By default, Mautic 4 activates the new builder. Follow the previous steps to" -" revert to the legacy builder, remembering to clear the cache and reload the" -" Landing Page." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:77 f1f776f9b0de402d834761bfd001b4e1 -msgid "Email builder overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rstNone c0c3999a79c34949bbf15dea0b909f14 -msgid "Screenshot of the editor overview" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:83 7f154bca6f8448efac2cf8ecede65056 -msgid "The functions of the Email builder are as follows:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:85 be58883b099748ef9e38465060004ccd -msgid "You can select different screen size to preview your Emails." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:87 cae73d6cb2dd49f2a5a44b3b7e61d6ed -msgid "You have the ability to undo and redo your changes." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:89 bf68da647da94ff4ac19e227bc7f81cd -msgid "" -"Editor functions from left to right: display grids, Full screen view, export" -" MJML / HTML code, Edit code, display customization options, display blocks," -" close editor." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:91 2042fe91a0f641889c1ff80f1d47709e -msgid "" -"Layout sections: these objects function as the basic structure of your " -"design. Create your Email structure from sections, and pull in the different" -" blocks you want to use." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:93 ac69b59310f045ba934d07a36ccf6507 -msgid "" -"Content blocks: you can populate your newsletter with these content blocks. " -"Each block has specific layout, settings and design." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:96 eab30a00baec456dbd19bbfec26bfa6c -msgid "Templates" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:98 c08ab882d0e54966beb47c8be7721337 -msgid "" -"To use your existing templates with the new builder, you need to add one " -"line to your configuration file in the template folder:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:100 0dea42ad91a94015970c77aead9bd26e -msgid "``\"builder\": [\"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:102 b91dfa447fb14532be9b9a7c3bd327f2 -msgid "" -"If you wish to use the Theme in multiple builders, you can use this syntax:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:104 7ea8c8f582824783aec21dc804d8f5da -msgid "``\"builder\": [\"legacy\", \"grapesjsbuilder\"],``" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:108 63ddb9477e7045c48114e36e069002c7 -msgid "" -"This syntax changed between Mautic 3.3.* and Mautic 4 to enable support for " -"multiple builders - if you have been testing in the beta phase you need to " -"update your configuration files to avoid a 500 error." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:110 2798a9ee8d514a2eaf8a46e0c9256372 -msgid "The Blank Theme contains an example of a full configuration file:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:122 5c0307460c07426291cedc06a25b2a51 -msgid "" -"From the 3.3 General Availability release there are be three Email templates" -" that support MJML." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:125 8a3539048ce14197b79a428dba7bc361 -msgid "Themes" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:127 10b06892130f43739d1db89262afe7ff -msgid "" -"If you search through the list of available Themes, the new MJML Themes " -"``Brienz``, ``Paprika`` and ``Confirm Me`` display only with the new " -"builder." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:129 ca5a0939439a41ee9a3a83fcf4edd2f7 -msgid "" -"To learn more about creating Themes please :doc:`check the " -"documentation`." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:132 661dff41686f4279b2738e166cff0a59 -msgid "Reporting bugs" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:135 052534741f2c4b6383a108ecc76dedb8 -msgid "Known bugs / issues" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:137 57ca6808767c49979a5fc5bfd6dd05db -msgid "" -"Please use the issue queue on the :xref:`GitHub repository` to find the " -"latest updates and to raise bugs with the Plugin. Be sure to search first in" -" case someone has already reported the bug." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:140 7034079747f944659ca956592236f1df -msgid "Switching back to the legacy Builder" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:142 def1f13f161940ea84c5100bc81c2858 -msgid "" -"In case you aren't happy with the Plugin at the moment, you can easily " -"switch back to the legacy Builder (original Mautic Builder). You can do so " -"very quickly:" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:144 77265e3f7b8b4bc6a27c4ad248832eaa -msgid "" -"Go to Mautic Settings > Click the cogwheel on the right-hand top corner" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:146 41c51389dc2f43b185d6632402531dbb -msgid "Open the Plugins Directory > click \"Plugins\" inside the menu" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:148 d75c5c4f88f44a4fa2aa00354b952e10 -msgid "" -"Find the GrapesJs Plugin and click it > Click \"No\" and then \"Save and " -"Close\"" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:150 36dedc71500b439298da09431dd4e578 -msgid "" -"Clear the cache and reload the Landing Page - you may also need to clear " -"your browser cache." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:152 a59aa4c315364418b448ea51fe0828f2 -msgid "" -"After unloading GrapesJs Plugin, the legacy builder becomes active again." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:155 9486031c955f43eaa2a6c6938fa49750 -msgid "Thanks and credits" -msgstr "" - -#: ../../builders/grapesjs_builder.rst:157 3bdf114ecd354cd58ff967f1721f8cd4 -msgid "" -"Thank you to everyone who contributed to this project. Special thanks to " -"Adrian Schimpf from :xref:`Aivie` for all their hard work in leading the " -"project, to :xref:`Webmecanik` for initializing this amazing new builder and" -" to Joey from :xref:`Friendly Automate` for donating three Email Themes to " -"the Community. Additional contributions from Alex Hammerschmied from " -":xref:`hartmut.io`, Dennis Ameling." -msgstr "" - -#: ../../builders/grapesjs_builder.rst:159 e3d03e9ebbbb4b7290e21f6bf32b2930 -msgid "" -"And of course a really big thank you to all the contributors who have helped" -" to bring this project to this point." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/campaigns/campaign_builder.po b/docs/locale/zh_TW/LC_MESSAGES/campaigns/campaign_builder.po deleted file mode 100644 index 8c5873d2..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/campaigns/campaign_builder.po +++ /dev/null @@ -1,747 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaign_builder.rst:4 cf6ab74bad4740fabe98b70ede7eb0be -msgid "Using the Campaign Builder" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:8 37cf807263f043ae9551161c15626f52 -msgid "" -"The Campaign Builder provides a blank canvas on which you can build your " -"Campaign workflow. The Campaign Builder allows the use of conditions, " -"decisions, and actions. It enables you to create a simple workflow by " -"dragging and dropping various decisions, actions, and conditions onto a " -"canvas." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:10 d2e7bbb4544a4284b63bcb443b158f75 -msgid "To build your Campaign, perform the following steps:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:12 f268bf6c5f3e44eda82c380f432ab09c -msgid "" -"Click **Launch the Campaign Builder** on the New Campaigns wizard. The " -"Contact Sources menu appears as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone d5cab0005db74b05aaf18c10c8e88348 -msgid "Screenshot of Campaign builder showing Contact sources" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:18 2ea9be8b8e2d40dfb799bc04a3cff7b3 -msgid "" -"In this step, you specify the Contacts to include in your Campaign. It's " -"possible to trigger a Campaign when Contacts join a Segment, submit a Form, " -"or a combination of the two." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:20 f8a1a1f0907045d9a637ba9438c47a65 -msgid "Select where your Campaign pulls the Contacts from:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:22 a0f82c7057234424901bc2eb26d14191 -msgid "" -"**Contact Segments**: choose this option if you want to send your Campaign " -"to a specific group of your Contacts that share certain attributes, for " -"example, 'Located in the United States' or 'Visited Product A' and are in an" -" existing Segment based on this criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:24 7f22d60a88324c12ad10118336bca0e6 -msgid "" -"Note that the Segment selection shows public Segments only. If you create a " -"Segment marked as private, that Segment won't be available for use in " -"Campaigns." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:26 caec0526e9a54a758760df041335e91f -msgid "" -"**Contact Forms**: choose this option if you want to start the Campaign when" -" the Contact completes a specified Form. Forms are the primary point of " -"gathering information about a Contact. It's possible to take action in a " -"Campaign based on the Form field values submitted." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:28 d9035500e7ce4d7694a65c0883b8177a -msgid "" -"You can select a mix of both types of Contact sources for your Campaign. To " -"use both, click the grey selector button on either the left or right side of" -" the **Contact source** box to add whichever source type you didn't " -"originally select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:0 5c60236429934c4e985439b40eb06fcb -msgid "Screenshot of Campaign builder showing multiple sources selected." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:34 9b0a2c87561f47e3a3b8a6730263be39 -msgid "" -"After selecting one or more Contact sources, click the grey selector button " -"to add at least one event to your Campaign. A Campaign event comprises of a " -"combination of actions, decisions, and/or conditions as shown in the " -"following image:" -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone e946e572adba41b6b61c66a4a4bd54ed -msgid "Screenshot of Campaign builder showing the available Campaign events." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:40 1a6a2775bc6a40058e2f26d3c6797e12 -msgid "" -"For more information about Campaign Actions, Decisions, and Conditions, see " -"the following topics." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:43 80ad12c0732541ee95c15393789ac48e -msgid "Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:44 558172df6a504043aedef247ea417dd5 -msgid "" -"Campaign actions are events that you initiate on your Contacts or Contact " -"records. These can represent sending communications to the Contact or may " -"automate operational tasks to keep your marketing running. A single Campaign" -" can include more than one action. When you create a Campaign, you select " -"one of these actions to begin the workflow." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:46 f173e26621e64dce8f9efadcfe1a28e5 -msgid "The actions that Mautic offers in a Campaign include:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:48 938a5526ae9e49aca9603b26c9f8cbaa -msgid "Campaign Actions in Mautic :header-rows: 1 :widths: 5, 95" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:52 debbac1e90ab48e08ac2c7325dbfdb0b -msgid "Action" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:53 -#: ../../campaigns/campaign_builder.rst:150 -#: ../../campaigns/campaign_builder.rst:172 -#: ../../campaigns/campaign_builder.rst:195 e3b47d5f83054f6f822d08b24faeda21 -#: 91416160b7a248ad91b39982d31c9eb8 bd61a68303664e0aae1127e5d3466252 -#: eb53f71b995e4555b6513a358b173458 -msgid "Description" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:54 245f588a4a564a3fa43a69d11c9ba871 -msgid "**Add Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:55 556868458a6f4d8f88dd4d42f22f5a0b -msgid "Adds the Contact to the Do Not Contact (DNC) list" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:56 b81e75dca1294f65a419110aef5e06cb -msgid "**Add to Company's score**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:57 7350695c95164183ac6e87f55ecdaee1 -msgid "" -"Adds or subtracts a designated number of Points to or from the score for all" -" Companies associated with the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:58 23b4a7be0de44318baa8d0836018d09d -msgid "**Add Company action**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:59 f600121c42e943e48d0fbbdf7daaffda -msgid "" -"Associates a Contact with a Company and sets the Company as the primary " -"Company for the Contact." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:60 c5bef9715803487db9b468c68f9bfd6c -msgid "**Adjust Contact Points**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:61 d1ba1727fd114dce802a98752c905145 -msgid "Adds or subtracts Points from the Contact’s Point total." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:62 d38104aaabc94212b749d4cbee4ff77b -msgid "**Change Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:63 043bd824d60d4e519f54172b61234c35 -msgid "" -"Removes a Contact from the existing Campaign, moves them into another " -"Campaign, restarts the current Campaign or a combination of these. You must " -"remove a Contact from a Campaign before restarting the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:64 d36540a0e358492786ced9c09e65a1bb -msgid "**Change Contact's Stage**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:65 8310148f65a34302a78f560e1149a6bd -msgid "Moves a Contact to the specified Stage." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:66 19e575528290415e9f991bcb7f6d3118 -msgid "**Delete Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:67 d0e77e5db2c641db84a8faecb4c83bd2 -msgid "" -"Permanently deletes the Contact record along with all the information about " -"that Contact, including the Campaign event log record about that Contact. " -"See the :doc:`Segment docs` about how to use this" -" action to delete all Contacts in a Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:68 468df5ca06ff4e7b9ae3526a40600cd8 -msgid "**Jump to Event**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:69 14d8389aac9d4c37b97b450dc499a53c -msgid "" -"Moves Contacts from one point in a Campaign to another without rebuilding " -"events. Use this action to send the Contact to a different path in the " -"Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:70 15622b472f8c424fbcae82399d2185e4 -msgid "**Modify Contact's Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:71 b923ed8b00b045698c480b55d50bfc85 -msgid "" -"Adds or removes Contacts to/from Segments. When removing a Contact from a " -"dynamic - filter-based - Segment via a Campaign action, they won't be re-" -"added to the Segment based on meeting the filter criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:72 4a7310970f404a05911d58ffc7420490 -msgid "**Modify Contact's tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:73 0b2358abe67242eda848b07922c80e6b -msgid "" -"Overwrites or appends Tags on a Contact record. You can add or remove Tags, " -"or do both, in the same action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:74 d1d17db8cb4441d18dbb01890fdc4afe -msgid "**Push Contact to Integration**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:75 fbe2158e190f4116a8878ddb60231f95 -msgid "" -"Sends the Contact record to the selected Integration, either creating a new " -"Contact in the chosen Integration or updating the connected Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:76 0cb30f6559ab444f9968f9422a5a94c2 -msgid "**Remove Do Not Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:77 f76503be8ef74e618ddb23bcb55902d3 -msgid "Removes the Contact from the Do Not Contact (DNC) list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:78 23262eeb0b674a39a7e7b83d97de8d24 -msgid "**Send a Webhook**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:79 fbf33f74d7cf4a2488ab8b36599a1d01 -msgid "" -"Sends a Webhook to a defined URL, using the GET, POST, PUT, PATCH, or DELETE" -" methods. Headers and data is customizable, and support the use of tokens, " -"such as Contact fields and the Contact's IP address. For example, " -"``{contactfield=firstname}``" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:80 c9ac3a60938f4c878b96cafcf4399d52 -msgid "**Send Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:81 76c8a2a678784e86afb9abfe8882ce82 -msgid "" -"Sends a transaction or marketing Email to the selected Contact. You can send" -" a transactional Email to the Contact multiple times. You can only send a " -"marketing Email to the Contact once across multiple sources. If the Contact" -" has already received this Email from another source or the current " -"Campaign, they aren't sent the Email again and the Contact progresses " -"through the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:82 a1e3aa19fbf04d5582623afd083a778a -msgid "**Send Email to User**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:83 c2d6ea2f06b9436199d5d3ca12457db4 -msgid "" -"Sends an Email to an entity other than the Contact. This may be a Mautic " -"User, the Contact's owner, or non-Users. Emails sent using this action don't" -" generate any statistics for Contacts or Emails." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:84 45763b12d7394b2987bb029ee8bc8fd7 -msgid "**Send Marketing Message**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:85 3b7d5354b6a242b596e0d843a0092596 -msgid "Sends a message using the Contact's preferred Channel." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:86 4620875b5eab4987a401b044c66162d7 -msgid "**Update Contact**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:87 a29dad9cf537483dbe548453fd2d102d -msgid "Updates the existing Contact's fields with the specified values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:88 f827c435726940738176b47bdf07405d -msgid "**Update Contact's primary Company**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:89 f579ed176ec843008deb5aa4d8ae39c2 -msgid "" -"Updates the existing Contact's primary Company fields with the specified " -"value. See :doc:`documentation on Companies " -"`." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:90 9c42368cc70441da9af9e7fde7019e91 -msgid "**Update Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:91 174264f59c0a4720a450b35c5d3a6ae5 -msgid "Updates the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:96 3d89dc2f412a4f78bf3726339abbdf69 -msgid "Notes on Campaign Actions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:101 1db7932d3462438fb8e23b1bb4e97a56 -msgid "" -"As the first step of your Campaign, you typically send out an Email to your " -"Segments. When you add an Email to a Campaign, you can select a potential " -"**delay** for Email delivery as shown in the following image." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 9d55396ade504bf2909eb972c5da61cf -msgid "Screenshot of Campaign builder showing the Email send delay options." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:107 05b929c39748421daeb3fa6fb30885d4 -msgid "" -"When attaching an Action to a decision's **non-action** initiated decision " -"path, the delay becomes how long the Contact has to take action before the " -"Campaign progresses down the non-action path. Image showing delayed actions " -"on a non-action decision path in a Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:109 4f03250203f5492eb6abed90d577e937 -msgid "" -"The Delete Contact action also deletes the Campaign event log record about " -"that Contact. Therefore, though this action might always display 0% progress" -" on the Campaign detail overview, it could have deleted some Contacts." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:112 e1d5028691984a398838c080c528e9b2 -msgid "" -"The Delete Contact action doesn't allow connection with other Campaign " -"events. Since the Contact won't exist after triggering this action, Campaign" -" events can't exist after this point." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:114 2b54f38f941d4f13a12f0ec11e0e677a -msgid "After adding an action, you can place a decision on the Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:117 a60e5c54b5244f90a8f9d9d0e15d59d1 -msgid "Decisions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:119 0024209887c74c66b05a46b04a40d0bc -msgid "" -"Campaign Decisions are actions that your Contacts initiate. Downloading an " -"Asset, opening an Email, or visiting a Landing Page are examples of " -"Decisions. These Decisions can be either directly initiated or implied based" -" on non-action. The options for Decisions change based on the Campaign " -"Actions that you select." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:121 2004e943ba204d4980014ca414e81ef5 -msgid "" -"A decision usually has two paths denoted by the red and green icons on the " -"decision tree." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:124 a3b3053cb56140458c7f5883ce14c517 -msgid "Green paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:126 d47d156cb35c412b8a14669d6d29d3a1 -msgid "Green paths indicate positive or affirmative actions." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:128 a366981aa01a41e1a96cd1d8622ca7b8 -msgid "" -"A Contact takes this path if the Contact has made a direct action such as " -"opening an Email or submitting a Form. Execution of Actions that follow the " -"green paths happen immediately - or scheduled immediately in the case of a " -"delay on the following action - at the time the Contact takes the action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:131 74d78de9a9944166b6df5511f4fddbb5 -msgid "Red paths" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:133 9bec3e5bd77242bcad0a7f8dbf109c11 -msgid "Red paths indicate non-action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:135 75bdf913c8c34bf5bf8ba7b5b99e668b -msgid "" -"A Contact takes this path if a Contact hasn't taken the action. Use an " -"action's delay settings to define at what point the Campaign should send the" -" Contact to the following steps on this path." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:137 1e68786820ca41d882c5e52932101e21 -msgid "" -"Depending on meeting - or not meeting - the criteria for the decision, the " -"Contact takes either the green or the red paths in the decision tree. For " -"example, consider an instance where the decision is to visit a Landing Page." -" There can be two outcomes. If the Contact chooses to visit the Landing " -"Page, then the green decision path connects to the next action in the " -"Campaign workflow. If, however, the Contact doesn't visit the Landing Page, " -"then the red decision path connects to a different action - for example a " -"delay of 7 days then the marketer may send a follow up Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rstNone 2eb9ff0ad52943249621b3942fd73024 -msgid "Screenshot showing Campaign decisions available in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:143 482cab17b0a94cdc9d30032986604d76 -msgid "Here are the decisions that Mautic offers in the Campaign Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:145 1c347d5281fa4c16ba344b2592ac80b2 -msgid "Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:149 -#: ../../campaigns/campaign_builder.rst:171 70f426919a784cadb79deb7a2c56e42f -#: a1573864830d43ee93f25336d05ccb77 -msgid "Decision" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:151 5bc4ad1c3a934fda8934ee8d927bc402 -msgid "**Device visit**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:152 4de9da4ab6cb475abe69239c5f1247b2 -msgid "" -"Set the options to track whether your Contact visits your resources from a " -"specific device type, brand, or operating system." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:153 8af1af663f7047a5a3d45d8c1d461d2e -msgid "**Downloads Asset**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:154 ef1ab90d6c7e4e9f8729b4875897dae7 -msgid "" -"Set the options to track whether your Contact downloads specified Asset/s." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:155 06f573c0c645414184e589f663762439 -msgid "**Request Dynamic Content**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:156 99b3cf4054134c99b4a2bf52d4e73446 -msgid "" -"Set options to push Campaign-based Dynamic Content if you have a webpage or " -"Landing Page where you want to add Dynamic Content." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:157 e9426892d0124f21951f30f273c2c4d0 -msgid "**Submits Form**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:158 441222dcb17e41628c5a3888da3555a4 -msgid "" -"Set options to track whether the Contact has submitted any Mautic Forms. You" -" can also limit this decision to track specific Forms." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:159 5bc20cb9471549df992f3b64e793051d -msgid "**Visits a page**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:160 85c0cc0471dc49e9bd7f4acc1e22e367 -msgid "" -"Specify one or multiple pages you want the Contact to visit. Can be Mautic " -"Landing Pages or pages on your website." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:161 b62982bb498748c19e2e38ae9c9c1b81 -msgid "**Email-Related Decisions**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:162 d02ce23d9e56427f8c878a0b94b46b12 -msgid "" -"Some decisions in the Campaign Builder are available for use only if you " -"select the Send Email Campaign action." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:165 ce7a4ebcd8c343d8b214d187666be63d -msgid "Here are the decisions that are Email-related:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:167 444a48733ace4100911941285afc8110 -msgid "Email-related Decision Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:173 298d60cb499d45dcbb0036729cccb7d1 -msgid "**Opens Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:174 2d134fb79d864ac7b23be143633321c3 -msgid "Tracks whether the Contact opens the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:175 5871caa5b67c4423907189f3d58e5445 -msgid "**Clicks Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:176 2b83eb2175a049b096668a3575c39a4c -msgid "" -"Tracks whether the Contact clicks a link within the sent Email. This infers " -"that the Contact opened the Email." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:177 a825935e0583406987dd1c9c237a266e -msgid "**Replies to Email**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:178 10ff7b5ca08444d89ec3904d1a9e1336 -msgid "" -"Tracks if a Contact has replied to an Email that you sent. For more " -"information, see Contact replies." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:182 618b5b9d986c4b3aa2119bed3f05e11f -msgid "Conditions" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:184 f0ad047789cc4f2a85d6f065ff01dce9 -msgid "" -"Campaign conditions execute different actions based on a Contact's data. For" -" example, to execute an action if a Contact has a valid Email address or do " -"something else if they don't." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:186 107dc45b647545a79f3b5eade466f116 -msgid "" -"A condition has two paths, denoted by red and green icons as explained in " -"the previous section." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:188 b58b68fa26cb4bdeb40693c62c1191f6 -msgid "" -"Here are the different conditions that Mautic offers in the Campaign " -"Builder:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:190 9e8aeeca576248a2948acb9f90394d00 -msgid "Condition Actions in Mautic" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:194 1423778e357c4796ad5d001620627e28 -msgid "Condition" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:196 f198009aafd24d948ffcbbad2278d7e1 -msgid "**Contact Campaigns**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:197 eafd00b2b97847708eddf4d4ad433f60 -msgid "Checks if the Contact is a member of another Campaign." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:198 4db3c58c9b114dbb80439404aa9631a9 -msgid "**Contact device**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:199 7f8b41739d7c4f9ea178d87104ca57d7 -msgid "" -"Checks if the Contact has interacted with your Campaign from a specific " -"device type, brand, or OS." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:200 111c85426f6e42df9a2ab934f8aaa4a5 -msgid "**Contact field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:201 afbbf290a2bc4436a62cbf58b4aa6bce -msgid "" -"Checks if the information matches the selected criteria on the Contact " -"record, the Contact’s primary Company, or UTM tags." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:202 8a8990162c47450393da525687aebf71 -msgid "**Contact owner**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:203 2f92c9e595d640f2b8ebd414b2e62f1e -msgid "Checks if the selected User is the Contact's owner." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:204 c39a43faf7634cc08a7d18013e7de4e3 -msgid "**Contact Segments**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:205 0e630a3a401b458ba409eebdfd591085 -msgid "Checks if the Contact is a member of selected Segments." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:206 eb89d98ce7c84203a14901867196aa1d -msgid "**Contact Tags**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:207 e39f2eee9e4f4494a1fcc5240d68f69c -msgid "Checks if specified Tags are on the Contact record." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:208 a792965871fd432090657cec49581047 -msgid "**Form field value**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:209 9611ceb6d8da4336a13c418f43a8aea5 -msgid "" -"Checks if values submitted for a selected field on a selected Form matches " -"specified criteria." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:210 35a64f28b2284e42970a47b9e2fa911f -msgid "**Has active notification**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:211 ce11cceb119b4d309cebf46bfbc900bc -msgid "Checks if the Contact has an active web notification." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:212 7f63a01efd58457593df23259094c5d9 -msgid "**Has valid Email address**" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:213 a51db9b7a957486e90be645957a9ab1d -msgid "" -"Checks if the Contact's Email address has a valid syntax, for example " -"name@example.com without spaces, other invalid characters or formats." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:216 00c6111533254f73a7d71d6cc28044ca -msgid "Notes on delayed conditions and dates" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:217 148d4fd07e1745cc97c97bb2913ed387 -msgid "" -"Mautic respects delays set on the condition itself before passing down to a " -"delay on any connected action. For example, if you are coming from a " -"negative path on 'Opens Email', you can set a condition of 'has active " -"notification' with a relative date of 1 day, followed by 'Send Email' on the" -" negative path with a relative date of 2 days. Mautic checks after 1 day if " -"there is an active notification and if there isn't, schedules the Email for " -"two days later." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:220 7ea595f6d30f46f5bbcc4dfcb8082b82 -msgid "Using a custom date field to trigger a Campaign" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:221 7a6b96f07e584c268ad337150dc46162 -msgid "" -"In the condition based on a Contact field value, select the required date " -"field. Then select date as the operator and select the required value from " -"the drop-down list." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:223 bf468812c51a4df3bf19cab6cb78074c -msgid "" -"In the Anniversary option, you can only enter the day and month values." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:225 14cc9ce5fbde44a4b0e620520bbf425b -msgid "" -"Mautic evaluates Campaign conditions immediately, therefore if the date in " -"the field matches the condition, Mautic executes then the positive action. " -"If the date doesn't match, Mautic executes the negative action. The Contact " -"doesn't wait for the condition to be TRUE." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:227 263901e628ef4a2d82fd50e0ba1d9f65 -msgid "" -"In order to run Campaigns based on a particular date where a Contact may or " -"may not be \"included\" today:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:229 db450f4742ae40d5b7473a8f6de852a6 -msgid "create a Segment with a filter where the date field = ``TODAY``." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:230 87bbf155293d4ea685c35379e48b1141 -msgid "initiate the Campaign based on that Segment." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:231 853c9553528246adb609a9126d4086ed -msgid "as Contacts move in and out of the Segment, the Campaign runs." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:232 14c3836c78ea4b73ba19df63d618c41d -msgid "you can eliminate the condition since the Segment is changing daily." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:234 67ad48b998b34f42979c46536dcb2903 -msgid "This **doesn't work** for the Anniversary option." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:236 d61ca934fe07497683881f8d86edf360 -msgid "" -"If a Contact appears again at a later date in that Segment because the value" -" of the date has changed, then the Contact passes through the Campaign only " -"once, and hence isn't included in the Campaign again." -msgstr "" - -#: ../../campaigns/campaign_builder.rst:241 3a3f3bfff30e405c85eda631faf79151 -msgid "Triggering Campaign events" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:245 aff7e94f60c54a77a5bd55e7725fc751 -msgid "" -"Actions and Decisions in Mautic require a :doc:`cron job`" -" which executes the following command at the desired interval:" -msgstr "" - -#: ../../campaigns/campaign_builder.rst:251 b45df530f7644c6d8a55368de10f0798 -msgid "" -"If you want to execute the command at different intervals for specific " -"Campaigns, you can pass the ``--campaign-id=ID`` argument to the command." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/campaigns/campaigns_overview.po b/docs/locale/zh_TW/LC_MESSAGES/campaigns/campaigns_overview.po deleted file mode 100644 index 4324ebb1..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/campaigns/campaigns_overview.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/campaigns_overview.rst:2 0277bd8e73634b8d84621f4275df2a71 -msgid "Campaigns overview" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:4 9fdf19f457984ca389eb151fd513ff00 -msgid "" -"A Campaign is a marketing activity that aligns Components and the Channels " -"through which you can publish your content in a coordinated, strategically " -"timed approach to meet specific business objectives. After you add your " -"Contacts and set up the required Channels, you can create Campaigns to build" -" meaningful relationships with your Contacts." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:6 3f02605bd8ab4ce9b49c64c8b28f84fe -msgid "" -"Campaigns are useful for Contact management, marketing operations, and sales" -" workflows. A Campaign can send tailored messages to all Contacts in the " -"Segment, or a subset of Contacts that you specify. You can set the Campaign " -"schedule to send the message once or at a recurring interval, such as once a" -" week." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:8 771f82c3b4f048c091cde6e86b2bfa85 -msgid "" -"One of the main benefits of the Campaign workflow process is the ability to " -"predefine these workflows and have them respond automatically to your " -"Contacts and timelines. This automation minimizes the amount of time " -"required for manual Contact activity and improves reliability of Contact " -"nurturing." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:11 690a75a3a5844cef8a1f86933e16df72 -msgid "Campaign types" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:13 d4db17c3fa8f4c2ab9eab5a04f07ced7 -msgid "Campaigns can be broadly categorized into three types:" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:18 ff0b6ac65427414cb9618b23c2b3d3d1 -msgid "Time driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:22 348a1d72ddc5499bbd09551d3ae506f4 -msgid "" -"Time driven Campaigns are the type of Campaigns that center around specific " -"timed events. These events can be anything, but are usually Emails. For " -"instance, you can choose to trigger such Email events after a delay of a " -"predefined number of days or on a specific date in the future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:27 2979786e48d34e40a2fb93e304d77974 -msgid "Contact driven Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:31 ea8a9118ae0e4c48a47ef820a08eb7c3 -msgid "" -"Contact driven Campaigns can trigger events based on interactions with " -"specific Contacts. These interactions can occur as a result of the Contact " -"landing on a certain webpage or Landing Page, opening an Email, spending a " -"specified amount of time on a website, or any other activities. Such " -"Campaigns can respond to these actions typically by sending an Email to the " -"Contact either immediately or at a specific time in future." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:37 eb0b6bef0b38450a80df8382bef5f799 -msgid "Mixed Campaigns" -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:41 48cd4a2a6c41422e9a5e5319a3bddfad -msgid "" -"Mautic allows you to create Campaigns which consist a mix of both time " -"driven Campaigns as well as Contact driven actions. This powerful mixed " -"Campaign strategy drives actions by both specific dates or after specific " -"time frames, as well as actions taken by a Contact directly." -msgstr "" - -#: ../../campaigns/campaigns_overview.rst:44 6a07d3c4877745f781e2b7320aa58fb3 -msgid "" -"Campaigns can trigger a variety of actions. Email actions mentioned in the " -"preceding Campaign types are one example. The other actions that a Campaign " -"can trigger include automatic assignment to a new Segment, assigning a new " -"Point value, or pushing into an Integration, into a CRM or other systems." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/campaigns/creating_campaigns.po b/docs/locale/zh_TW/LC_MESSAGES/campaigns/creating_campaigns.po deleted file mode 100644 index 8644cb8d..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/campaigns/creating_campaigns.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/creating_campaigns.rst:4 f6e5dca57fa84d8b992bda2c526cde98 -msgid "Creating Campaigns" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:8 912093f665bc4fa1b8ad9463fbba0f21 -msgid "" -"Creating Campaigns is a central part of the marketing automation process. " -"When you create a new Campaign, you perform the basic administrative tasks " -"such as choosing a name for the Campaign, creating a description, assigning " -"a Category and defining publishing information for the Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:10 ad2fd216bfff4ec9ac54b03a2a634002 -msgid "" -"At the heart of any marketing automation Campaign is the Campaign Builder. " -"This allows you to specify how Contacts enter the Campaign, and what happens" -" at every point after they enter the workflow." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:12 df5c30053f87461a9c0257cacd88bf9d -msgid "" -"After establishing the basics, the Campaign Builder handles the finer " -"details of building a Campaign workflow using Conditions, Decisions, and " -"Actions." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:15 738af8a861ee4e7eac9e8937409121c3 -msgid "Prerequisites" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:17 d309979ee4374974b526357a44f7b231 -msgid "" -"Before you start creating Campaigns, you must ensure that you have the " -"following set up:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:20 69b3a2ebe26c4337bb3adfc5df256480 -msgid "" -"Create a Contact Segment or a Form to initialize your Campaign. If you " -"already have an existing Segment or Form to use, ensure that they're up-to-" -"date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:22 b9160b91bc0f4c6cbadb47b066c81924 -msgid "Create any custom field that you need for your Contact profile." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:23 97dff0e8eff44b2cb20dcb7f12066aa3 -msgid "" -"Set up and configure any Integration that you intend to use in your " -"Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:24 81d8d56245db460baa20bab36dc61cac -msgid "" -"Set up appropriate Channels such as Text Messages, Email, Focus items to " -"communicate with your Contacts." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:25 a20fbf3987bb456bacf640c9e232ddaf -msgid "" -"Create Assets, Landing pages, or other Components that you want to use for " -"your Campaign. If using Assets, ensure that you upload them before creating " -"your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:27 2ce3f6839269450895ae0d6d5682e2cb -msgid "" -"Although you can set up Channels and create Components during the process of" -" creating the Campaign, it's ideal to have them ready beforehand as it makes" -" the Campaign building process faster and more efficient." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:32 e5cbf9476a9449d1a6d3abc1083e4c10 -msgid "Create your first Campaign" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:36 b9484d66da4a4d588348878d382bffb2 -msgid "" -"After you have the prerequisites in place, you are ready to create your " -"first Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:39 0edb86c2360742f789553f2a023b7889 -msgid "To begin creating Campaigns, perform the following steps:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:41 da614fb814194e76af690cf266ad7f6c -msgid "Launch your Mautic instance." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:42 fd4d00056ff74fe380c23fb2c4028054 -msgid "" -"Click **Campaigns** in the left navigation menu. The Campaigns page appears." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:43 f7ef0b7fe7c84a51ae803957ede2312d -msgid "" -"Click **New** on the Campaigns page. The New Campaign wizard appears as " -"shown in the following image. Screenshot of the New Campaign screen" -msgstr "" - -#: ../../campaigns/creating_campaigns.rstNone f3d2a291bb8a45f2bcae61b6a00b9fc5 -msgid "Screenshot of the create a new Campaign interface" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:49 ef5652d8e0f64d8b97403b654835ed84 -msgid "Enter a name and a brief description for your Campaign." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:50 172f666c5c094817bc357d7225aa6ea1 -msgid "Optionally, you can set the following properties:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:52 5fc27c6fb59a406a92223bee9a6e22b3 -msgid "" -"**Category** - Choose a Category to assign your Campaign to. Categories help" -" you organize your Campaigns. To learn more about creating and managing " -"Categories, see :doc:`/categories/categories-overview`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:53 613929d730524d1592f14f95ff4d3a8c -msgid "" -"**Allow Contacts to restart the Campaign** - Click the toggle switch to " -"allow Contacts to restart the Campaign if you're building a Campaign for a " -"recurring message - for example birthdays, subscriptions - or transactional " -"operations - for example activity notifications, updating data. Enabling " -"this option allows Contacts to go through the same Campaign multiple times." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:54 8b734fc2f32348cfb3435d13a4394997 -msgid "" -"**Published** - Click the toggle switch to publish or un-publish the " -"Campaign. Ensure that you don't publish a Campaign until you're actually " -"ready for it to go live. You can also schedule to publish or un-publish a " -"Campaign at a future date by selecting a time and date." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:56 ef322ee4a61e45a481d11e3fc20c2901 -msgid "" -"Click **Launch Campaign Builder** to start building your Campaign, and add " -"at least one event. For information about how to use the Campaign Builder, " -"see :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:59 d5823799340646e19c5ad434490a5808 -msgid "" -"After adding events to your Campaign, close the Campaign Builder and click " -"**Save & Close** to save your changes." -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:63 f61607f969df497fa5dc6749c1b05dcc -msgid "Add or remove Contacts in batch" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:65 d3509837130f4931a719e72a50873b5d -msgid "" -"After creating your Campaign, you can add or remove Contacts in batch for " -"Campaigns using the following command:" -msgstr "" - -#: ../../campaigns/creating_campaigns.rst:72 16965c0d78c942feb7100b9313347ff0 -msgid "See documentation on :doc:`/set_up/cron_jobs` for further details." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/campaigns/managing_campaigns.po b/docs/locale/zh_TW/LC_MESSAGES/campaigns/managing_campaigns.po deleted file mode 100644 index a790761a..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/campaigns/managing_campaigns.po +++ /dev/null @@ -1,100 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/managing_campaigns.rst:4 52736d9e08e04df4b7b5dd2932348efd -msgid "Managing Campaigns" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:8 b96b45dcb5ce4f499d34f171008d58a0 -msgid "You can manage your Campaigns from the Campaigns overview." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:10 159f28cf511e4002acc9dc3c2ee6f5e3 -msgid "" -"Click any Campaign name on the Campaigns list to take you to the Campaign " -"overview. Each tab displays details of your Campaign, including the number " -"of Contacts added to the Campaign, the number of Emails sent, the number of " -"page views resulting from the Campaign, and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:12 871a3865890844c0b1caf9ba1d08a545 -msgid "" -"Additional information includes a quick overview of what decisions and " -"actions are available in the Campaign, as well as a grid layout overview of " -"all the Contacts in the Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:14 2880882d3f7344148ec13954841564b1 -msgid "" -"The following image shows a sample Campaign overview with its highlighted " -"panels:" -msgstr "" - -#: ../../campaigns/managing_campaigns.rstNone 65a692aeb8b34fc3bb8c9b9af4f5ecd9 -msgid "Screenshot showing the Campaign overview" -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:20 72d76cac7e9b420abdcd166e3944dc8a -msgid "" -"The **Details** drop-down menu gives a quick overview of the most important " -"information about your Campaign. This information includes the name of the " -"User who created the Campaign, Category of the Campaign, creation date and " -"time, publishing date and time, Contact Segments in your Campaign and more." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:22 21999347697d4c8db097235c1c084721 -msgid "" -"The **Campaign Statistics** panel shows the number of Contacts added to the " -"Campaign over the specified period of time in graphical format. To specify " -"the time period, use the From and To date selectors, and click Apply." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:24 d9391fbb139e4644940b490676642b21 -msgid "The **Preview** tab displays a diagrammatic preview of your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:26 0739d0d8f8a4401ca396f7bf7c25a09f -msgid "" -"The **Decisions** tab displays a tabular list of all the decisions that you " -"have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:28 288d53884b1645ac8762651655b466bb -msgid "" -"The **Actions** tab displays a tabular list of all the actions that you have" -" added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:30 907e69003fb24c2a9854ce67b50cef2f -msgid "" -"The **Conditions** tab displays a tabular list of all he conditions that you" -" have added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:32 27ed68b0bbe7491a98b2bc9e9441ba3d -msgid "" -"The **Contacts** tab displays a grid view of all the Contacts that you have " -"added to your Campaign." -msgstr "" - -#: ../../campaigns/managing_campaigns.rst:34 bd6a144b48784d67954785db4358d392 -msgid "" -"The **Recent Activity** panel on the right displays the recent activities " -"that have taken place in the Campaign." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/campaigns/troubleshooting_campaigns.po b/docs/locale/zh_TW/LC_MESSAGES/campaigns/troubleshooting_campaigns.po deleted file mode 100644 index d0a65d81..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/campaigns/troubleshooting_campaigns.po +++ /dev/null @@ -1,85 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../campaigns/troubleshooting_campaigns.rst:4 -#: b3f5e65167774ab3ab5db2d4d6cacdd0 -msgid "Troubleshooting Campaigns" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:9 -#: d4eb613f8db74151bdd30d4408ebfdad -msgid "Page visits aren't recognized" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:11 -#: 62c3495c020c48b995ec436d2584143e -msgid "To workaround this issue, try one of the following options:" -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:13 -#: ea1f368f35b04dabb6f044704e3120e6 -msgid "" -"Make sure that you aren't testing the Page visit while logged into Mautic. " -"Mautic ignores activity from Mautic Administrators. So, it's suggested that " -"you use an anonymous session, an incognito window, another browser, or log " -"out of Mautic." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:15 -#: c63c17667a3144608b97a05e9e6bca78 -msgid "" -"Ensure that the Contact getting tracked is in the Campaign. The easy way to " -"test this is to review the timeline of the Contact for the page hit / " -"inclusion into the Campaign." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:17 -#: 56122a5b4a8146cb9d12b1510f05a224 -msgid "" -"Mautic executes Campaigns sequentially and won't repeat per Contact. If the " -"Contact has already visited the Page while part of the Campaign and " -"triggered the Visits a Page decision, then the Contact's subsequent visits " -"won't re-trigger the actions associated with the decision." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:19 -#: bbcbb535a7fd448ca373c87ebb445782 -msgid "" -"Ensure that the URL in the Campaign action either matches exactly the URL " -"visited, or use a wildcard. A URL can include the schema, host/domain, path," -" query parameters, and/or fragment. For example, if you have a URL of " -"``https://example.com`` and the page hit registers as " -"``https://example.com/index.php?foo=bar``, the Campaign decision won't " -"trigger. However, if you use ``https://example.com*`` as the URL, it matches" -" the rule and thus gets triggered." -msgstr "" - -#: ../../campaigns/troubleshooting_campaigns.rst:21 -#: f462e5f552d947acb7a36c79a580a2e0 -msgid "" -"Another example is if you want to associate different page hits with " -"specific Campaigns. For example, if you have Campaign A and Campaign B and " -"you want to use the same base URL and path for both Campaigns but " -"differentiate with a query parameter. For Campaign A, you can define a " -"Visits a Page decision with ``https://example.com/my-page?utm_campaign=A*`` " -"and for Campaign B, ``https://example.com/my-page?utm_campaign=B*``. A " -"Contact only triggers the specific Campaign desired. If the goal is to " -"trigger both Campaigns regardless of the query parameters, use " -"``https://example.com/my-page*``." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/categories/categories-overview.po b/docs/locale/zh_TW/LC_MESSAGES/categories/categories-overview.po deleted file mode 100644 index e5262dfc..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/categories/categories-overview.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../categories/categories-overview.rst:4 677a77bad0fd4f5e93ca8f9984f07242 -msgid "Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:8 0a6c75bb2a4b480da06da5ce1cb7a198 -msgid "" -"Categories are a way to organize Mautic elements. They're available for " -"Assets, Campaigns, Emails, Focus Items, Forms, Pages, Points, Social " -"Monitoring and Stages. There are two ways to use Categories:" -msgstr "" - -#: ../../categories/categories-overview.rst:10 -#: 4477fc0e8f7c4cec848297bffda9aac6 -msgid "" -"Create element-specific Categories for example only for Assets, Emails or " -"Forms." -msgstr "" - -#: ../../categories/categories-overview.rst:11 -#: 83824f4b25424dbd81e9bb65b466ae80 -msgid "Create global Categories for all Mautic elements." -msgstr "" - -#: ../../categories/categories-overview.rst:16 -#: 3164ece730d24f1399875d98e47ef685 -msgid "Creating and managing Categories" -msgstr "" - -#: ../../categories/categories-overview.rst:20 -#: 9554b962a69242a7bcc63c9c77516868 -msgid "" -"To create new Categories, go to settings menu in the top right corner of " -"Mautic. There choose Categories." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: 960d043631b440c6a85c06be2ab897e6 -msgid "Screenshot of create new Category" -msgstr "" - -#: ../../categories/categories-overview.rst:28 -#: e9f8402e170a46058b2185e0dc9b71d8 -msgid "" -"When creating a new Category you can select type, title, description, alias," -" color and published status. The color will be helpful to quickly find " -"Mautic elements by their appropriate Category when viewing things like the " -"Calendar or other areas within Mautic." -msgstr "" - -#: ../../categories/categories-overview.rst:31 -#: b4dff64848764d61bc0eed11605756b7 -msgid "Using Categories for Contacts" -msgstr "" - -#: ../../categories/categories-overview.rst:35 -#: 6745a7d7aebd4ec8b75fcbc738b9c845 -msgid "" -"In addition to organizing various Mautic elements Categories can be used to " -"organize Contacts. In Contact details use the Preference menu to open " -"Contact Preference Center." -msgstr "" - -#: ../../categories/categories-overview.rstNone -#: c87d1ae9389640ca81fec5cb7409a512 -msgid "Screenshot of assigning Category to Contact" -msgstr "" - -#: ../../categories/categories-overview.rst:41 -#: 5a9bc2f253ac40a3b31e87dd18a6adb2 -msgid "Contact Categories can be used in Segment and dynamic content filters." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/channels/emails.po b/docs/locale/zh_TW/LC_MESSAGES/channels/emails.po deleted file mode 100644 index 09d6847a..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/channels/emails.po +++ /dev/null @@ -1,1092 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/emails.rst:2 33f88ddeb80b464e8143155d72140381 -msgid "Emails" -msgstr "" - -#: ../../channels/emails.rst:4 68e813deed424e7aae5cdce312920fc7 -msgid "" -"Mautic enables marketers to automatically send Emails directly to a group of" -" Contacts in a Segment by using a Campaign, or send Emails on a one-time " -"basis. Emails provide a means for direct interaction with potential " -"customers, clients, and Contacts." -msgstr "" - -#: ../../channels/emails.rst:7 cd3593ce51c24dfead8d9f7baa011a5d -msgid "Email types" -msgstr "" - -#: ../../channels/emails.rstNone 9f1aefd2a5314498a4e7fbe08aadeef1 -msgid "Screenshot showing the types of Emails that are available in Mautic" -msgstr "" - -#: ../../channels/emails.rst:13 e8eca7987c7945a2972b102315a6d0cd -msgid "" -"There are two types of Emails: template and Segment - broadcast - Emails." -msgstr "" - -#: ../../channels/emails.rst:18 be08c4c6276c4832bb347de331afd6ad -msgid "Template Emails" -msgstr "" - -#: ../../channels/emails.rst:22 21fa5ee8ba864702a32a868f93c5c404 -msgid "" -"Template Emails are transactional by default. They're used in Campaigns, " -"Form submit actions, Point triggers, etc. It's possible to send template " -"Emails to the same Contact multiple times. You can't send template Emails to" -" a Contact outside of another Mautic Component except when sending an Email " -"directly to a Contact - in this case Mautic clones the content." -msgstr "" - -#: ../../channels/emails.rst:25 4ff8b79585d94a13aebe97ee5ea17f01 -msgid "" -"For this reason, template Emails sent directly to a Contact aren't " -"associated with the template Email itself and thus stats aren't tracked " -"against it." -msgstr "" - -#: ../../channels/emails.rst:30 1a40557cfefd4067a78a48d20c830e5c -msgid "Segment (Broadcast) Emails" -msgstr "" - -#: ../../channels/emails.rst:34 80446c7f6a9e46d6bd7474cc74c73165 -msgid "" -"Segment Emails are marketing Emails by default. On creation the marketer " -"assigns Segments to the Email. This determines which Contacts receive the " -"communication. Note that each Contact can only receive the Email once - it's" -" like a mailing list." -msgstr "" - -#: ../../channels/emails.rstNone 0f98c3d8959847c8a22f86bb411f7243 -msgid "Screenshot showing selecting Email Segments in Mautic" -msgstr "" - -#: ../../channels/emails.rst:40 426980dbd7ba49e0b9096944c782deda -msgid "" -"This entry field is a multi-select which allows you to choose several " -"Segments if necessary." -msgstr "" - -#: ../../channels/emails.rst:42 e2b100b4bb934be885a692858a0de3a5 -msgid "" -"Mautic initiates the sending of these Emails with a :doc:`/set_up/cron_jobs`" -" - see section on Send Scheduled Broadcasts - for example, Segment Emails - " -"for more details on this." -msgstr "" - -#: ../../channels/emails.rst:45 62efeabeaaa6438aa89e9c47ae555dfe -msgid "Email formats" -msgstr "" - -#: ../../channels/emails.rst:47 d2bb039065d2405c9146b0136da91f21 -msgid "" -"In Mautic, it's possible to create Emails in both full HTML as well as basic" -" text format - delivered as necessary to Contacts based on what their client" -" supports. This is an important part of creating a strong relationship with " -"Contacts by providing relevant information in the correct format." -msgstr "" - -#: ../../channels/emails.rst:52 65b3215b49804159b4f0170932a0cde8 -msgid "Managing Emails" -msgstr "" - -#: ../../channels/emails.rst:57 77ec0c1866a04692a83d22f4e023d4c7 -msgid "Email overview" -msgstr "" - -#: ../../channels/emails.rst:59 343c8177e3c945d2953fe033cbed12b5 -msgid "" -"The Email overview allows at-a-glance information regarding the success or " -"failure of a particular Email. You can quickly see relevant information in " -"regards to opens, bounces, successful click-throughs and other important " -"statistics." -msgstr "" - -#: ../../channels/emails.rst:62 95ae737128db4a999129d97c6a23e35e -msgid "Translations" -msgstr "" - -#: ../../channels/emails.rst:64 a1e11614e34e4579b87e2b5b291830a6 -msgid "" -"When creating the Email, there is an option to assign a language and a " -"translation parent. By selecting a translation parent, the current item is " -"then considered to be a translation in the selected language of that parent " -"item. If a Contact has a preferred language set, they receive the translated" -" version in their preferred language if it exists. Otherwise, they receive " -"the parent in the default language." -msgstr "" - -#: ../../channels/emails.rst:66 5ad995fad0554be1802043c98441ddba -msgid "It's also possible to have translations of A/B test variants." -msgstr "" - -#: ../../channels/emails.rst:69 e2b2d52212ab43ffad9d2eabcd98d742 -msgid "Base64 encoded images" -msgstr "" - -#: ../../channels/emails.rst:71 395ea7ed4e3f45668c6f5720d0f12e04 -msgid "" -"It's possible to encode all images in the Email text as base64. It attaches " -"the image inside the Email body. It has several implications:" -msgstr "" - -#: ../../channels/emails.rstNone 3f2ddf82b9184609bc0739de8eacffcd -msgid "Screenshot showing Base64 settings for images in Emails" -msgstr "" - -#: ../../channels/emails.rst:77 5cf160801a434aec9768610c13cacff8 -msgid "" -"The main idea with this option is that most of the Email clients display the" -" images directly, without the need to allow images." -msgstr "" - -#: ../../channels/emails.rst:78 d476743b049b4435be8fa40e82d1ad38 -msgid "" -"Some Email clients like GMail require the approval to display Base64 encoded" -" images due to the tracking pixel being an image, and won't display the " -"Base64 encoded images as a result. See the next paragraph for possible " -"solution." -msgstr "" - -#: ../../channels/emails.rst:79 6601811035dc40f0bedc1c36b78e417c -msgid "" -"The Email body increases significantly if the Email contains many and/or " -"large sized images. Some Email clients like GMail \"clip\" such messages and" -" won't display it directly." -msgstr "" - -#: ../../channels/emails.rst:82 2160f6225246487d8eca0eef4b438834 -msgid "Tokens" -msgstr "" - -#: ../../channels/emails.rst:84 1c1bd8b0a7b849678d61ba4338ce9d63 -msgid "" -"Mautic allows the use of tokens in Emails which gives the marketer the " -"possibility to integrate a number of Contact fields in your Emails. These " -"can be easily placed within your Emails and are automatically replaced with " -"the appropriate text once sent." -msgstr "" - -#: ../../channels/emails.rst:86 8f0af53248834114bbe76ef25d9c3e95 -msgid "" -"Check the :doc:`/set_up/variables` documentation for a list of all the " -"available default fields." -msgstr "" - -#: ../../channels/emails.rst:89 639ada3131eb434a9ca44afb985b9f51 -msgid "Default value" -msgstr "" - -#: ../../channels/emails.rst:91 a78cfae1a9aa404cb25d2c30fb1186db -msgid "" -"A token can have a default value for cases when the Contact doesn't have the" -" value known. You must specify the default value after a ``|`` character, " -"for example:" -msgstr "" - -#: ../../channels/emails.rst:97 0605fe543a294ec7a0fa6b956b5e4038 -msgid "" -"The ``|friend`` tells Mautic to use 'friend' if there is no first name " -"present in the Contact field." -msgstr "" - -#: ../../channels/emails.rst:100 6a6e417100f5472eb37305ad6398e559 -msgid "Encoded value" -msgstr "" - -#: ../../channels/emails.rst:102 3af202e70e044e2a93bdeb8301e33f0a -msgid "" -"It's possible to encode values used in a token using the following syntax:" -msgstr "" - -#: ../../channels/emails.rst:108 e4acdbd9761842ae83be3e7c81adf3b1 -msgid "" -"The ``|true`` tells Mautic to encode the value used, for example in URLs." -msgstr "" - -#: ../../channels/emails.rst:111 1fc2bb7b9ed44c6b9bdd73bfc945bfb8 -msgid "Date formats" -msgstr "" - -#: ../../channels/emails.rst:113 9ae3866a69454d988d58f38d664870db -msgid "To use custom date fields in tokens, use the following format:" -msgstr "" - -#: ../../channels/emails.rst:121 4642c08df2074bb2bd3776ca6f0a63ae -msgid "" -"The date outputs in a human-readable format, configured in the settings in " -"your Global Configuration > System Settings under 'Default format for date " -"only' and 'Default time only format'." -msgstr "" - -#: ../../channels/emails.rst:124 012ccbb6df08493f999718c26ef2c688 -msgid "Contact replies" -msgstr "" - -#: ../../channels/emails.rst:126 2667879251404fcc9944bb5539147998 -msgid "" -"To make use of monitoring replies from Contacts, you must have access to an " -"IMAP server **other than Google or Yahoo** as they overwrite the return " -"path, which prevents this feature from working." -msgstr "" - -#: ../../channels/emails.rst:129 98989c8ee8cc47c1883cbe41652acb50 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled - most hosts already have this turned on." -msgstr "" - -#: ../../channels/emails.rst:131 33ef63adc3394680a66dc45e313bbde2 -msgid "" -"Configure all Mautic sender/reply Email addresses to send a copy to one " -"single inbox - most Email providers support this feature in their " -"configuration panel." -msgstr "" - -#: ../../channels/emails.rst:134 d6d372707c2a4de38b63a071ccc7a3be -msgid "" -"It's best to create an Email address specifically for this purpose, as " -"Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:136 89747da6616d442898a10325222f0bf9 -msgid "" -"Go to the Mautic configuration and set up the inbox to monitor replies." -msgstr "" - -#: ../../channels/emails.rstNone ../../channels/emails.rstNone -#: aa052bad48e54fac959dabdc9c6247b1 88ba921114a54b71827a4e3faefe98c9 -msgid "Screenshot showing IMAP mailbox setting for reply monitoring" -msgstr "" - -#: ../../channels/emails.rst:142 e3391df8d1d249fa8f2a80ee8dfc9b16 -msgid "To fetch and process the replies, run the following cron command:" -msgstr "" - -#: ../../channels/emails.rst:144 ca20c82737e741f4854c33e9d337cd74 -msgid "``php path/to/mautic/bin/console mautic:email:fetch``" -msgstr "" - -#: ../../channels/emails.rst:147 4a37883c7ac44033b7669718af783fe6 -msgid "Usage" -msgstr "" - -#: ../../channels/emails.rst:148 c7378489907d46e9a3b3a6fae1bdb0ba -msgid "" -"Contact replies within Campaigns function as decision after an Email Send " -"action, to take further action based on whether the Contact has replied to " -"the Email. Mautic tries to read the inbox, parse messages, and find replies " -"from the specified Contact. The Contact, when matched with an incoming " -"reply, proceeds down the positive path immediately after the reply " -"detection." -msgstr "" - -#: ../../channels/emails.rstNone 3f4bf8efe43d40b5a239b7f4f6a9bec5 -msgid "Screenshot showing Contact replies Campaign action" -msgstr "" - -#: ../../channels/emails.rst:158 85ba49c25ffc45e4a1cbb3f7ab58215f -msgid "Mailer as Owner" -msgstr "" - -#: ../../channels/emails.rst:162 dd12c11e56044eeea70720f4f54a7477 -msgid "" -"This feature allows Mautic to automatically personalize Emails sent to a " -"Contact who has an owner (Mautic User) assigned to them. This feature " -"changes the from Email, from name and signature by changing the default " -"setting to the Mautic Contact owner's User setting." -msgstr "" - -#: ../../channels/emails.rst:167 509315290b654f0d81db3823458a384a -msgid "Sending from the Contact owner" -msgstr "" - -#: ../../channels/emails.rst:171 3d5341d25f5c4ec6b85b86100616b66c -msgid "Open the Admin menu by clicking the cog icon in the top right corner." -msgstr "" - -#: ../../channels/emails.rst:172 23f370f02c6c4eb595029730fcdbea3d -msgid "Select the Configuration menu item." -msgstr "" - -#: ../../channels/emails.rst:173 a4aadf03739448df93b2f1aed4a9268b -msgid "Select the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:174 3d27f4b5c12d463a9ceae596e4ae1e8d -msgid "Switch the Mailer is owner to Yes." -msgstr "" - -#: ../../channels/emails.rst:175 68f572bb42f94d248545eae74c367890 -msgid "Save the configuration." -msgstr "" - -#: ../../channels/emails.rst:178 2a49705260f74665a97353e0278655a6 -msgid "Overriding the mailer as owner setting" -msgstr "" - -#: ../../channels/emails.rst:179 772b6060d4ae4895832dc5abf27c4428 -msgid "It's possible to override the global setting on a per-Email basis." -msgstr "" - -#: ../../channels/emails.rst:181 cbbe622e64e348a7806cc8827d8f8f69 -msgid "" -"There is a switch under the advanced settings of the Email, which allows you" -" to decide whether to take the global mailer as owner setting, or the " -"specified from address, into account." -msgstr "" - -#: ../../channels/emails.rstNone 2170ad40a976449caa68c4ca5fec22ec -msgid "Screenshot showing mailer as owner switch" -msgstr "" - -#: ../../channels/emails.rst:187 3a21507bbef8417a8540a25cdb98d8b6 -msgid "If set to Yes, the global setting takes precedence." -msgstr "" - -#: ../../channels/emails.rst:189 3f6807a5c7684448aafc8a509f01ac22 -msgid "" -"If set to No, Mautic uses the address and name supplied in the Email 'From' " -"fields." -msgstr "" - -#: ../../channels/emails.rst:192 dcfa11c678084668b0f3a0e5c5106c07 -msgid "Signatures" -msgstr "" - -#: ../../channels/emails.rst:194 fbfaea455c7b47698fc955d51137a69d -msgid "Setting a signature happens in two places:" -msgstr "" - -#: ../../channels/emails.rst:196 b85ef9ec1b75462394542d50750d7a77 -msgid "" -"The default signature is in the Configuration > Email Settings tab. The " -"default text is" -msgstr "" - -#: ../../channels/emails.rst:202 fe6e73b057c348adb808ee4ab0667c8a -msgid "" -"Mautic replaces the ``|FROM_NAME|`` token with the name which is also " -"defined in the Email Settings tab." -msgstr "" - -#: ../../channels/emails.rst:204 b129b6cdfbff4fb9bac8d695676da7c8 -msgid "" -"Mautic uses this signature by default if the Contact doesn't have an owner " -"assigned." -msgstr "" - -#: ../../channels/emails.rst:206 efab87be2e2f47efab23410d5782bc4e -msgid "" -"Every Mautic User can configure their own signature in their account " -"settings. Mautic uses this signature by default if the Contact has an owner " -"assigned to them." -msgstr "" - -#: ../../channels/emails.rst:209 30c9426be5b64a75a0919c8bd3b37726 -msgid "" -"There are some exceptions where the Contact owner's signature isn't used, " -"which is when a User sends an Email directly from a Contact's profile. In " -"this case, Mautic uses the currently logged in User's signature, with the " -"from name and Email specified in the Email send Form, and not the Contact " -"owner. The values used are pre-filled with those of the currently logged in " -"Mautic User." -msgstr "" - -#: ../../channels/emails.rst:211 ceb5988f264b4eae880afa912ece54b7 -msgid "" -"It doesn't matter if the Contact has another owner assigned or if it doesn't" -" have an owner at all." -msgstr "" - -#: ../../channels/emails.rst:213 cd3caa764eb0422eab03dc4c93f499fe -msgid "Also, when sending a test Email this is also the case." -msgstr "" - -#: ../../channels/emails.rst:219 dd49cb062c344aa8878bf86f3f95974b -msgid "Using the Email signature" -msgstr "" - -#: ../../channels/emails.rst:223 927647ff02cc47d5a8421db6c1f42b25 -msgid "" -"Marketers can place the signature into an Email using the ``{signature}`` " -"token." -msgstr "" - -#: ../../channels/emails.rst:226 5088784fe77346b6b57541ee7b5d7a0b -msgid "Email delivery" -msgstr "" - -#: ../../channels/emails.rst:228 225e5acc83dd461dac083b204baff8a6 -msgid "" -"Mautic delivers Emails using the method defined by the system administrator." -" If you are the system administrator for your Company, then you need to add " -"the Email protocol for your Mautic instance to use. Mautic integrates with " -"any Email service provider which offers SMTP mail servers as well as several" -" distinct services such as:" -msgstr "" - -#: ../../channels/emails.rst:230 2a2de46e0d89412e96c903ef1d688907 -msgid ":xref:`Mandrill`" -msgstr "" - -#: ../../channels/emails.rst:231 149e1231d7a24115b9f4286318fba359 -msgid ":xref:`GMail`" -msgstr "" - -#: ../../channels/emails.rst:232 423b948e27994c20a45daaa2e6998040 -msgid ":xref:`Sendgrid`" -msgstr "" - -#: ../../channels/emails.rst:233 f757569e66d0417787dc5d9ed5da808b -msgid ":xref:`Mailjet`" -msgstr "" - -#: ../../channels/emails.rst:234 aa21220391f04a3487ceee26da0b819d -msgid ":xref:`Postmark`" -msgstr "" - -#: ../../channels/emails.rst:235 f159dce790fd4e94b10b45280a939dd9 -msgid ":xref:`Sendmail`" -msgstr "" - -#: ../../channels/emails.rst:236 f39410ed123f4e70bfb3e081e57d70c1 -msgid ":xref:`Amazon SES`." -msgstr "" - -#: ../../channels/emails.rst:238 2129ae4699cb4bf687c6d751a31999e5 -msgid "" -"The system can either send Emails immediately or queue them for processing " -"in batches by a :doc:`cron job `." -msgstr "" - -#: ../../channels/emails.rst:241 3bfd9249d1f04f45843723ca681e39a0 -msgid "Immediate delivery" -msgstr "" - -#: ../../channels/emails.rst:243 6c9bfc0b03c449da804b35576d26cdda -msgid "" -"This is the default means of delivery. As soon as an action in Mautic " -"triggers an Email to send, it's sent immediately. If you expect to send a " -"large number of Emails, you should use the queue. Sending Email immediately " -"may slow the response time of Mautic if using a remote mail service, since " -"Mautic has to establish a connection with that service before sending the " -"mail. Also attempting to send large batches of Emails at once may hit your " -"server's resource limits or Email sending limits if on a shared host." -msgstr "" - -#: ../../channels/emails.rst:246 32e6924675a04f69aa0e2f998906d601 -msgid "Queued delivery" -msgstr "" - -#: ../../channels/emails.rst:248 b49048ed8995403f8ea3d0a1e034fe77 -msgid "" -"Mautic works most effectively with high send volumes if you use the queued " -"delivery method. Mautic stores the Email in the configured spool directory " -"until the execution of the command to process the queue. Set up a :doc:`cron" -" job ` at the desired interval to run the command:" -msgstr "" - -#: ../../channels/emails.rst:254 ae0ca184dc6f42dfbefea8ee33445081 -msgid "" -"Some hosts may have limits on the number of Emails sent during a specified " -"time frame and/or limit the execution time of a script. If that's the case " -"for you, or if you just want to moderate batch processing, you can configure" -" batch numbers and time limits in Mautic's Configuration. See the :doc:`cron" -" job documentation ` for more specifics." -msgstr "" - -#: ../../channels/emails.rst:259 3f4c8bbf376f4cf5b61d01174ad71779 -msgid "Tracking Opened Emails" -msgstr "" - -#: ../../channels/emails.rst:263 f86c7ea3d9cf43d68369c53347134ebe -msgid "" -"Mautic automatically tags each Email with a tracking pixel image. This " -"allows Mautic to track when a Contact opens the Email and execute actions " -"accordingly. Note that there are limitations to this technology - the " -"Contact's Email client supporting HTML and auto-loading of images, and not " -"blocking the loading of pixels. If the Email client doesn't load the image, " -"there's no way for Mautic to know the opened status of the Email." -msgstr "" - -#: ../../channels/emails.rst:265 c3d3aee6caed4118a372164b40f5eb20 -msgid "" -"By default, Mautic adds the tracking pixel image at the end of the message, " -"just before the ```` tag. If needed, one could use the " -"``{tracking_pixel}`` variable within the body content token to have it " -"placed elsewhere. Beware that you shouldn't insert this directly after the " -"opening ```` because this prevents correct display of pre-header text " -"on some Email clients." -msgstr "" - -#: ../../channels/emails.rst:267 d464954cab264f6f920e6078c9e005b5 -msgid "" -"It's possible to turn off the tracking pixel entirely if you don't need to " -"use it, in the Global Settings." -msgstr "" - -#: ../../channels/emails.rst:272 922d8124256c4f1db7240e1e46582677 -msgid "Tracking links in Emails" -msgstr "" - -#: ../../channels/emails.rst:276 fa9aa53d6f6a4ef5bb9798b1015ce902 -msgid "" -"Mautic tracks clicks of each link in an Email, with the stats displayed at " -"the bottom of each Email detail view under the Click Counts tab." -msgstr "" - -#: ../../channels/emails.rst:279 fbe7ae5934184690a40382214498b48b -msgid "Unsubscribing" -msgstr "" - -#: ../../channels/emails.rst:281 2199f9a74516444180791f57c66e868b -msgid "" -"Mautic has a built in means of allowing a Contact to unsubscribe from Email " -"communication. You can insert the tokens ``{unsubscribe_text}`` or " -"``{unsubscribe_url}`` into your Email to have the text or the URL show at " -"your desired location. The unsubscribe text token inserts a sentence with a " -"link instructing the Contact to click to unsubscribe." -msgstr "" - -#: ../../channels/emails.rst:283 fcae02cde318495a94b27e2bc4ed325a -msgid "" -"The unsubscribe URL token inserts the URL into your custom written " -"instructions." -msgstr "" - -#: ../../channels/emails.rst:285 ../../channels/emails.rst:298 -#: 3092f0fc6932433c96495fd6c7a259e8 cf8740316ae54e34aa09491bf87f1f20 -msgid "For example:" -msgstr "" - -#: ../../channels/emails.rst:291 814d2ea7c3da4955bc919fca6e6253ce -msgid "" -"You can find the configuration of the unsubscribe text in the global " -"settings." -msgstr "" - -#: ../../channels/emails.rst:294 6df6cdd7f02140a0bf280e0b3b2b6352 -msgid "Online version" -msgstr "" - -#: ../../channels/emails.rst:296 55ec142ae1df496daad2ee75874fcdd8 -msgid "" -"Mautic also enables the hosting of an online version of the Email sent. To " -"use that feature, simply add the following as URL on text to generate the " -"online version link ``{webview_url}``." -msgstr "" - -#: ../../channels/emails.rst:305 1d3f4b49a23a4adab471be6ddb7614c5 -msgid "Bounce management" -msgstr "" - -#: ../../channels/emails.rst:307 1f76bb2f50274d36b8efb61763c3f730 -msgid "" -"Mautic provides a feature which allows monitoring of IMAP accounts to detect" -" bounced Emails and unsubscribe requests." -msgstr "" - -#: ../../channels/emails.rst:309 c755911333314c39abd88596fd5a7a23 -msgid "" -"Note that Mautic makes use of \"append\" Email addresses. The return-path or" -" the list-unsubscribe header uses something like " -"``youraddress+bounce_abc123@example.com``. The bounce or unsubscribe allows " -"Mautic to determine what type of Email it's when it examines the inbox " -"through IMAP. The ``abc123`` gives Mautic information about the Email " -"itself, for example which Contact it was it sent to, what Mautic Email " -"address it originated from, etc." -msgstr "" - -#: ../../channels/emails.rst:311 bd983ee8900b4de2bab3c22cdbb41c46 -msgid "" -"Some Email services overwrite the return-path header with that of the " -"account's Email (GMail, Amazon SES). In these cases, IMAP bounce monitoring " -"won't work." -msgstr "" - -#: ../../channels/emails.rst:313 08903ed55d8d48ff9bd261fd9bb39a68 -msgid "" -"Elastic Email, SparkPost, Mandrill, Mailjet, SendGrid and Amazon SES support" -" Webhook callbacks for bounce management. See below for more details." -msgstr "" - -#: ../../channels/emails.rst:318 84c0dc4ddd04489ca1123bb7e3950c53 -msgid "Monitored Inbox Settings" -msgstr "" - -#: ../../channels/emails.rst:322 72aaff25e1384163a91a7d7ef2dfe9e7 -msgid "" -"To use the Monitored Email feature you must have the PHP IMAP extension " -"enabled (most shared hosts already have this turned on). Go to the Mautic " -"configuration and fill in the account details for the inbox(es) you wish to " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:328 f236a836958941ea8baa84d48e96a10a -msgid "" -"It's possible to use a single inbox, or to configure a unique inbox per " -"monitor." -msgstr "" - -#: ../../channels/emails.rst:330 02e1b874bf0445a69c3d86a763b27bc3 -msgid "To fetch and process the messages, run the following command:" -msgstr "" - -#: ../../channels/emails.rst:336 d56038c00b3a4f0fba8e3b9e1a06d228 -msgid "" -"Note that it's best to create an Email address specifically for this " -"purpose, as Mautic reads each message it finds in the given folder." -msgstr "" - -#: ../../channels/emails.rst:338 267ce4fc938340df81765ce7649ad1d5 -msgid "" -"If sending mail through GMail, the Return Path of the Email is automatically" -" rewritten as the GMail address. It's best to use a sending method other " -"than GMail, although Mautic can monitor a GMail account for bounces." -msgstr "" - -#: ../../channels/emails.rst:340 35856f7aed72450fb692d037598f23bd -msgid "" -"If you select an Unsubscribe folder, Mautic also appends the Email as part " -"of the \"List-Unsubscribe\" header. It then parses messages it finds in that" -" folder and automatically unsubscribe the Contact." -msgstr "" - -#: ../../channels/emails.rst:343 f60658d1a4734b628858f852c37651af -msgid "Webhook bounce management" -msgstr "" - -#: ../../channels/emails.rst:348 baab3907996e43a0bc116251c6bfd6cf -msgid "Elastic Email Webhook" -msgstr "" - -#: ../../channels/emails.rst:352 3dab75df5bef45e2aeb6f5f870c1f2ce -msgid "" -"Login to your Elastic Email account and go to Settings -> Notification." -msgstr "" - -#: ../../channels/emails.rst:354 fd3525c295544073a807f03be49f826c -msgid "" -"Fill in the Notification URL as " -"``https://mautic.example.com/mailer/elasticemail/callback``" -msgstr "" - -#: ../../channels/emails.rst:356 76d8803db8f241c397aa5d2d937b64f9 -msgid "Check these actions: unsubscribed, complaints, bounce/error" -msgstr "" - -#: ../../channels/emails.rstNone cba7ea923f814797a45970a4ea44b5d9 -msgid "Screenshot showing Elastic Email Webhook settings" -msgstr "" - -#: ../../channels/emails.rst:363 1771b37f9a92464ea0877a65bcc48084 -msgid "Useful resources" -msgstr "" - -#: ../../channels/emails.rst:365 cbe06f470adb4215a177244fbda139e4 -msgid ":xref:`Elastic Support` - Elastic Email's Help desk" -msgstr "" - -#: ../../channels/emails.rst:366 48b4b806e14c4b43a227c21e45daea55 -msgid "" -":xref:`Getting Started with Elastic` - Getting Started resources from " -"Elastic Email" -msgstr "" - -#: ../../channels/emails.rst:371 c5134b8ec4a048188af81f2e35bf4b48 -msgid "Amazon SES Webhook" -msgstr "" - -#: ../../channels/emails.rst:375 d1619c4d3ef6440eb2eebd856831d4d4 -msgid "" -"Mautic supports the bounce and complaint management from Amazon Simple Email" -" Service (Amazon SES)." -msgstr "" - -#: ../../channels/emails.rst:377 060d062d44f844b7aa9ce4b1f9f8dfda -msgid "" -"Go to the Amazon Simple Notification Service - SNS - and create a new topic:" -msgstr "" - -#: ../../channels/emails.rstNone 373aafc067c44c05b6280f36f76c72ba -msgid "Screenshot showing Amazon SNS create new topic" -msgstr "" - -#: ../../channels/emails.rstNone c87afae5370b48e88ed2bd3f431b608f -msgid "Screenshot showing naming your SNS topic" -msgstr "" - -#: ../../channels/emails.rst:387 2058d7c62d7d40139528e85a9649e3d7 -msgid "Click on the newly created topic to create a subscriber" -msgstr "" - -#: ../../channels/emails.rstNone 476c91fa5d3442b6ba73ed11d3249a3a -msgid "Screenshot showing go to the topic" -msgstr "" - -#: ../../channels/emails.rstNone 2b9cc830ec744ab7a3c05f54ae9e1c32 -msgid "Screenshot showing new subscriber" -msgstr "" - -#: ../../channels/emails.rst:397 38cd479a46924dcabe3070e574f0ec3a -msgid "Enter the URL to the Amazon Webhook on your Mautic installation." -msgstr "" - -#: ../../channels/emails.rst:400 4f786cd4995f415aaf58e0daf7f8b985 -msgid "" -"When using the **SMTP method**, the callback URL is your Mautic URL followed" -" by ``/mailer/amazon/callback``." -msgstr "" - -#: ../../channels/emails.rst:402 54cd19e76d864e82a1e96df705fc9fba -msgid "" -"When using the **API method** (available since Mautic 3.2), the callback URL" -" is your Mautic URL followed by ``/mailer/amazon_api/callback``." -msgstr "" - -#: ../../channels/emails.rst:0 2de44caa82934132bec315a70aa48b95 -msgid "Enter URL in Mautic" -msgstr "" - -#: ../../channels/emails.rst:408 58490ef6ba714e9f9f92262bb43a8844 -msgid "" -"The subscriber is in the pending state until it's confirmed. SES calls your " -"Amazon Webhook with a ``SubscriptionConfirmation`` request including a " -"callback URL. To confirm, Mautic sends a request back to this callback URL " -"to validate the subscription. Therefore make sure your Mautic installation " -"can connect to the internet, otherwise the subscription remains in the " -"pending state and won't work. If your Webhook is https, you also need to " -"make sure that your site is using a valid SSL certificate which is " -"verifiable by Amazon." -msgstr "" - -#: ../../channels/emails.rst:410 7b0561601aae485d91ede97afb166731 -msgid "" -"Check the log file for more information. If you are having problems getting " -"the subscription out of the pending state, it may also help to configure the" -" topic's 'Delivery status logging' settings, so that delivery status (at " -"least for http/s) gets logged to CloudWatch. Then you can visit the Logs " -"section of the CloudWatch Management Console and see the exact details of " -"delivery failures. For example, an invalid SSL certificate might result in " -"an event like the following appearing in the CloudWatch logs:" -msgstr "" - -#: ../../channels/emails.rst:447 9df5c07fa2ad46aa83a993740bc47a9c -msgid "Mandrill Webhook" -msgstr "" - -#: ../../channels/emails.rst:451 111bb29ccf0846adbc5a9b12994d7ca1 -msgid "Mautic supports a few of Mandrill's Webhooks for bounces." -msgstr "" - -#: ../../channels/emails.rst:453 d6ec9c2b95dc443e87fe81668df7ac0f -msgid "Login to your Mandrill account and go to Settings -> Webhooks" -msgstr "" - -#: ../../channels/emails.rst:0 20dcd25420094aa6a767ef3d69628df9 -msgid "Screenshot showing Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:459 aa1abd1ba21a4f5daaca17f73f294f50 -msgid "Click Add a Webhook" -msgstr "" - -#: ../../channels/emails.rst:0 67858cca1ae9454e9b7b313424e72f5e -msgid "Screenshot showing addition of Mandrill Webhooks" -msgstr "" - -#: ../../channels/emails.rst:467 7b105d144e014b10be404c0167354c1b -msgid "" -"Mautic supports the following Webhooks: message is bounced, message is soft-" -"bounced, message is rejected, message is marked as spam and message " -"recipient unsubscribes." -msgstr "" - -#: ../../channels/emails.rst:471 57076dd778c4498db7d17e7de2efe8bf -msgid "" -"Fill in the ``Post To URL`` as " -"``https://mautic.example.com/mailer/mandrill/callback`` then click Create " -"Webhook." -msgstr "" - -#: ../../channels/emails.rst:473 9f0f31fe0ad1447d8754190f6929de79 -msgid "" -"Click Custom Metadata and create two new metadata fields: ``hashId`` and " -"``contactId``" -msgstr "" - -#: ../../channels/emails.rst:0 ../../channels/emails.rst:0 -#: df171bee204742829cb50c45ae6fe26f 6e4dce8ae8fc41398a99f94fd6ade1f3 -msgid "Screenshot showing addition of metadata" -msgstr "" - -#: ../../channels/emails.rst:486 ec118496314647318a747610fa47dbd6 -msgid "Mailjet Webhook" -msgstr "" - -#: ../../channels/emails.rst:490 37d6a544ea0f45b9a56ab7e40eb0f24e -msgid "" -"Mautic supports Mailjet's Webhooks for bounces, spam and blocked. Before any" -" configuration, you'll need to create an account on :xref:`Mailjet`." -msgstr "" - -#: ../../channels/emails.rst:492 bf23d2d443d0441888c5602757b2b1b6 -msgid "" -"Login to your Mailjet account and go to Account > Event tracking/triggers" -msgstr "" - -#: ../../channels/emails.rst:0 eb42539eeb434dbcaeda8048f20f8961 -msgid "Screenshot showing Mailjet Webhooks" -msgstr "" - -#: ../../channels/emails.rst:498 8f3b987736a6409c856f3c9db6101e96 -msgid "" -"On the event type list, select the one you want to link to your Mautic " -"account" -msgstr "" - -#: ../../channels/emails.rst:0 ae08a2fbdb0b4c35b31ed4a89d13874b -msgid "Screenshot showing adding Webhooks" -msgstr "" - -#: ../../channels/emails.rst:506 736e95919ac2422ea5565a03c4598d27 -msgid "" -"Mautic supports the following webhooks: message is bounced, message is " -"blocked, message is spam." -msgstr "" - -#: ../../channels/emails.rst:510 787e473fc60447edbf37e1cfcbad9de8 -msgid "" -"Fill in the URL boxes as " -"``https://mautic.example.com/mailer/mailjet/callback``." -msgstr "" - -#: ../../channels/emails.rst:515 3c163e7400cd4790bedab5bce00bb19f -msgid "SparkPost Webhook" -msgstr "" - -#: ../../channels/emails.rst:516 4b55d9e9e1b2411587bb80f40cc58cb9 -msgid "Login to your SparkPost account and go to Account -> Webhooks." -msgstr "" - -#: ../../channels/emails.rst:0 2c38569f581943fe90035ca403ad48b0 -msgid "Screenshot showing SparkPost webhooks" -msgstr "" - -#: ../../channels/emails.rst:522 c3616cf8076a41d0b9b7bf27fba74d6d -msgid "Click the New Webhook button top right" -msgstr "" - -#: ../../channels/emails.rst:0 8a6e82f6eae5460b95b8324bab73a80c -msgid "Screenshot showing new Webhooks" -msgstr "" - -#: ../../channels/emails.rst:528 a4dd7129479840d09381cc2b0bde3fac -msgid "" -"Fill in the Target URL as " -"``https://mautic.example.com/mailer/sparkpost/callback``" -msgstr "" - -#: ../../channels/emails.rst:530 ../../channels/emails.rst:553 -#: 51ff353b86ea449b97c79101ffbdc4d1 aae6170ac507496591699da4f7c6e6d9 -msgid "Select the following Events" -msgstr "" - -#: ../../channels/emails.rst:0 e4e11e8b50f9436386389694cad7ad49 -msgid "Screenshot showing events" -msgstr "" - -#: ../../channels/emails.rst:537 429d3eaaa78c441b8c607a8ac0a331e9 -msgid "SendGrid Webhook" -msgstr "" - -#: ../../channels/emails.rst:541 e367d4b3b8b44d31962d658a266f20f0 -msgid "" -"Login to your SendGrid account and go to Settings > Mail Setting > Mail " -"Settings" -msgstr "" - -#: ../../channels/emails.rst:0 375e1507cfbc4e7bafa2f698f5384e8c -msgid "Screenshot showing SendGrid Webhooks" -msgstr "" - -#: ../../channels/emails.rst:549 b49e04ee098a49a2a5edb504eef8ae68 -msgid "" -"Fill in the Target URL as " -"`https://mautic.example.com/mailer/sendgrid_api/callback`" -msgstr "" - -#: ../../channels/emails.rst:0 deb37cb9741d4ccc884a39239d154efb -msgid "Screenshot showing Events" -msgstr "" - -#: ../../channels/emails.rst:559 0480cf52c91c4ccabd8e29992f00c34f -msgid "Save setting - on the right side of \"Event Notification\" row:" -msgstr "" - -#: ../../channels/emails.rst:0 aef384f9917d4aa89737f438d2b456cb -msgid "Screenshot showing save settings" -msgstr "" - -#: ../../channels/emails.rst:568 ff2b411073e64a7cbd158d47da4381e7 -msgid "Create a Segment with bounced Emails" -msgstr "" - -#: ../../channels/emails.rst:572 effb36141eff4805b43cba3f8a9ed80b -msgid "" -"This isn't required, but if you want to be able to select the Contacts with " -"bounced Emails easily - for example to delete all bounced Contacts - create " -"a Segment with bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:574 bb2b48dac7954c93b19df891d8bec95b -msgid "Go to Segments > New." -msgstr "" - -#: ../../channels/emails.rst:575 90e56688ec10432cbe9509bc5d71593f -msgid "Type in the Segment name. For example Bounced Emails." -msgstr "" - -#: ../../channels/emails.rst:576 f7fe66c066364554ba2c8795907e2806 -msgid "Select the Filters tab." -msgstr "" - -#: ../../channels/emails.rst:577 006cef51dcf641c3816d32c4ef1a49cc -msgid "Create new Bounced Email equals Yes filter." -msgstr "" - -#: ../../channels/emails.rst:578 521f26e2fbb4406fb993a8bb056b55cc -msgid "" -"Wait for the ``bin/console mautic:segments:update`` command to be " -"automatically triggered by a cron job or execute it manually." -msgstr "" - -#: ../../channels/emails.rst:579 e5b5ba99c797484194f020662a1662ef -msgid "All Contacts with bounced Emails should appear in this Segment." -msgstr "" - -#: ../../channels/emails.rst:584 569ae39bfc6d40ed8defd290f6f74308 -msgid "Troubleshooting Emails" -msgstr "" - -#: ../../channels/emails.rst:589 7374688c15de44edb65c71a6e7268a43 -msgid "Email open tracking" -msgstr "" - -#: ../../channels/emails.rst:591 b1823bf5f03d4a85a5772f09eda0c9f1 -msgid "" -"Mautic tracks Email opens using a tracking pixel. This is a 1 pixel GIF " -"image in the source code of Email messages sent by Mautic." -msgstr "" - -#: ../../channels/emails.rst:593 153b5c3b11bf4c20874acb167a4f94fd -msgid "" -"When a Contact opens an Email using an Email client like Outlook, " -"Thunderbird, or GMail, the client tries to load the images in it. The image " -"load request is what Mautic uses to track the Email open action." -msgstr "" - -#: ../../channels/emails.rst:595 4b8a78c5064044ed8fd03b8866f09c49 -msgid "" -"Some Email clients have auto loading images turned off, and Contacts have to" -" selectively \"Load Images\" inside an Email message. Some automatically " -"open all images before delivering the Email to the Contact." -msgstr "" - -#: ../../channels/emails.rst:597 6b2ae0aa6c7d48fb861f14179d4b4a1b -msgid "" -"If the images aren't loaded for this reason or another, or if they're opened" -" automatically before sending the Email on to the Contact, Mautic doesn't " -"know about the open action. Therefore, Email open tracking isn't very " -"accurate." -msgstr "" - -#: ../../channels/emails.rst:600 518cc064a3194d83a39ed0e039d7e401 -msgid "Email link tracking" -msgstr "" - -#: ../../channels/emails.rst:602 7d325184c94f4e21a6302c6af9b2021e -msgid "" -"Before sending an Email, Mautic replaces all links in the Email with links " -"back to Mautic including a unique key. If the Contact clicks on such a link," -" the link redirects the Contact to Mautic, which then tracks the click " -"action and redirects the Contact to the original location. It's fast, so the" -" Contact doesn't usually notice the additional redirect." -msgstr "" - -#: ../../channels/emails.rst:604 258c0e3febd5435fa7e166a60d31366b -msgid "If the Email click doesn't get tracked, make sure that:" -msgstr "" - -#: ../../channels/emails.rst:606 fd37ffdc8fd74fff995e7b8a1a397602 -msgid "Your Mautic server is on an accessible URL." -msgstr "" - -#: ../../channels/emails.rst:607 ef8eda71bbb7489d9f58ace9b20e89c9 -msgid "" -"You sent it to an existing Contact via a Campaign or a Segment Email. Emails" -" sent by the Send Example link, direct Email from the Contact profile, or " -"Form submission preview Emails won't replace links with trackable links." -msgstr "" - -#: ../../channels/emails.rst:608 e5b7adbe6bcc41f59ca92732a5c53a25 -msgid "" -"Make sure the URL in the href attribute is absolute and valid. It should " -"start with ``http://`` or ideally ``https://``." -msgstr "" - -#: ../../channels/emails.rst:609 ec9c964ba84545d1b44a082d4481f905 -msgid "" -"You've opened the link in a incognito browser (not in the same session where" -" you're logged into Mautic)" -msgstr "" - -#: ../../channels/emails.rst:610 06df1f87bac24c05a373e7c235cbf13c -msgid "Check if Mautic replaced the link in the Email with a tracking link." -msgstr "" - -#: ../../channels/emails.rst:613 bd5605608a4344fb82b7e99b3a9c07ac -msgid "Unsubscribe link doesn't work" -msgstr "" - -#: ../../channels/emails.rst:614 bf1653f045d04fd5a4d2f9f1817ae8f7 -msgid "The unsubscribe link **doesn't work in test Emails**." -msgstr "" - -#: ../../channels/emails.rst:616 a67850d77288419fb9c62ab3d81aefa5 -msgid "" -"This is because Mautic sends test Emails to a Mautic User and not to a " -"Mautic Contact." -msgstr "" - -#: ../../channels/emails.rst:618 93fe2e96426f43dbb83f29cb588d02ba -msgid "" -"Mautic Users can't unsubscribe and therefore the unsubscribe link looks like" -" this: ``https://mautic.example.com/|URL|``. However, the link **does** work" -" correctly when you send the Email to a Contact." -msgstr "" - -#: ../../channels/emails.rst:620 2a82c21e17ea4b5fb85ff00a557bee1d -msgid "" -"Best practice is to create a Segment with a small number of Contacts to " -"receive test Emails - for example, yourself - which ensures that you can " -"fully test features such as unsubscribe behaviour." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/channels/focus_items.po b/docs/locale/zh_TW/LC_MESSAGES/channels/focus_items.po deleted file mode 100644 index da91aa5c..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/channels/focus_items.po +++ /dev/null @@ -1,668 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/focus_items.rst:2 70ba9a1b481d4a89958648a0ec2e5b2b -msgid "Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:4 dc5911a2478e47208dcb98bd89f9194c -msgid "" -"Focus items allow you to engage Users on your site through bars, modals, " -"notifications, popups, and light boxes. It's possible to initiate Focus " -"Items at different times and with different actions such as exit intent." -msgstr "" - -#: ../../channels/focus_items.rst:6 ddbb80e9e3a940a5b888b7384dd2e03b -msgid "You can find Focus Items listed under the Channels menu." -msgstr "" - -#: ../../channels/focus_items.rst:9 5c848e95f9954c2ea93f376eb7fcfdfc -msgid "Focus Item settings" -msgstr "" - -#: ../../channels/focus_items.rst:10 5f4a528f7b134d6ebea49f30ee413a35 -msgid "" -"There are several different types of Focus Items, and many ways to configure" -" them to deliver your strategic marketing goals." -msgstr "" - -#: ../../channels/focus_items.rst:13 784ff0d0effc47919b9133420abbdcd6 -msgid "Types of Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:15 492c4767612549d1a469c449c1ca7d53 -msgid "" -"There are three different types of Focus Item that you can create within " -"Mautic. These allow you to achieve different marketing goals with your Focus" -" Items. Select the appropriate option for your needs." -msgstr "" - -#: ../../channels/focus_items.rst:0 11820eb411524a92b11be7337735781c -msgid "Screenshot showing the types of Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:21 d8bbef0b99f44a7abc3956b01b29a90f -msgid "" -"**Collect Data** - This option presents a Form - which must already exist - " -"within the Focus Item. This allows you to gather more information about your" -" website visitors. Mautic considers a successful conversion on this type of " -"Focus Item when there is a submission of this Form. This option is great for" -" capturing simple information - for example a newsletter registration Form." -msgstr "" - -#: ../../channels/focus_items.rst:22 6224163d4dc6452e8ee4ccd0af7ccfae -msgid "" -"**Display a Notice** - This option presents a message to your visitors. " -"There is no option for detecting a conversion with this type of Focus Item. " -"This option is great for announcements and important messages." -msgstr "" - -#: ../../channels/focus_items.rst:23 d8e6d05e720e4406aedafe77844df4b9 -msgid "" -"**Emphasize a link** - This option allows you to drive visitors to a " -"specific link which might be a resource on your website, a Mautic Landing " -"Page, or any other web-based resource. Mautic considers a link click to be a" -" successful conversion with this Focus Item. This option is great for " -"Landing Pages to highlight a promotion or a sale - it displays a button to " -"click which directs the visitor to a given link." -msgstr "" - -#: ../../channels/focus_items.rst:26 07a889950a9f407091f668412dd0f7c1 -msgid "Engagement options" -msgstr "" - -#: ../../channels/focus_items.rst:28 05f6f74ea4b848e29122c0554395282b -msgid "" -"For each type of Focus Item, there are settings to configure which control " -"the triggering of the Focus Item, and how they interact with the visitor." -msgstr "" - -#: ../../channels/focus_items.rst:0 a1e8b0f1035a4be095b200c951b50db6 -msgid "Screenshot showing the engagement settings for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:36 58d044d997744340ac863f471d7204c9 -msgid "" -"**Animate** - When set to Yes, this applies a slide-in animation to the " -"Focus Item. When set to No, the item appears without any kind of sliding " -"motion." -msgstr "" - -#: ../../channels/focus_items.rst:41 7612a6babf2f402c91376da0fe76e28f -msgid "" -"**When to engage** - This setting controls the Focus Item shows. There are " -"several options:" -msgstr "" - -#: ../../channels/focus_items.rst:38 eda94f874744472d88801ccb1aa7151b -msgid "**Upon arrival** - As soon as a visitor lands on the page" -msgstr "" - -#: ../../channels/focus_items.rst:39 881016fb076946179dcbf510c44d1d6b -msgid "" -"**After slightly scrolling down** - Wait a little while until the visitor " -"starts to scroll down the page" -msgstr "" - -#: ../../channels/focus_items.rst:40 0db150d61e5f4e22aa0445978cfe18e8 -msgid "" -"**After scrolling to the middle** - Wait until the visitor scrolls to the " -"middle of the page" -msgstr "" - -#: ../../channels/focus_items.rst:41 b1d0290bc8574f90bad7787a59246f9e -msgid "" -"**After scrolling to the bottom** - Wait until the visitor scrolls right to " -"the bottom of the page" -msgstr "" - -#: ../../channels/focus_items.rst:42 a9b0b08208db49d3b8b352f5c710bd4f -msgid "" -"**Visitor intends to leave** - If the visitor's cursor moves over the " -"address bar, or from the page to the tabs - for example to close the tab or " -"open a new tab" -msgstr "" - -#: ../../channels/focus_items.rst:43 c606951cc18c4d438db6dd56ba6e3c57 -msgid "" -"**Timeout before engage** - This option allows you to set the delay in " -"seconds after reaching the option selected in **When to engage**. For " -"example, if the setting is **Upon arrival** and **Timeout before engage** is" -" 2 seconds, the Focus Item appears two seconds *after* the visitor lands on " -"the page." -msgstr "" - -#: ../../channels/focus_items.rst:49 33557829be9d4cc5a0e29d428c17aabd -msgid "" -"**How often to engage** - This option allows you to control how frequently " -"the Focus Item displays to visitors. The options available include:" -msgstr "" - -#: ../../channels/focus_items.rst:45 85ed07916dd843b986610bc7e0c66ccd -msgid "" -"**Every page** - Show on every page the visitors engages with on your " -"website" -msgstr "" - -#: ../../channels/focus_items.rst:46 d502e80cf3af42e980c551556daa4f50 -msgid "" -"**Once per session** - Show once for each time that the visitor accesses " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:47 eb8103faef3b4f88b84eece4053e300c -msgid "" -"**Every 2 minutes** - Show the Focus Item every two minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:48 f94d8c9d6f454c1b94ab25dd5481c31a -msgid "" -"**Every 15 minutes** - Show the Focus Item every 15 minutes that the visitor" -" is on your website" -msgstr "" - -#: ../../channels/focus_items.rst:49 46beed7b0800445fa1b6f7ca6586819a -msgid "" -"**Once per hour** - Show the Focus Item once every hour that the visitor is" -" on your website" -msgstr "" - -#: ../../channels/focus_items.rst:50 c994d43f011d4948a2f2fa4c5eba023e -msgid "" -"**Once per day** - Show the Focus Item once per day that the visitor is on " -"your website" -msgstr "" - -#: ../../channels/focus_items.rst:51 b44f4a8eb444459d8a4f79f8142b51d0 -msgid "" -"**Stop engaging after a conversion** - This option is only available for the" -" types which track a conversion (Collect Data and Emphasize a Link). If set" -" to Yes, the Focus Item no longer displays if the visitor has either " -"submitted the Form (Collect Data type) or clicked on the link (Emphasize a " -"Link type)." -msgstr "" - -#: ../../channels/focus_items.rst:56 8f827d568b7c462790bdf6867b0540de -msgid "Styles" -msgstr "" - -#: ../../channels/focus_items.rst:58 f3a6729d926a45b5adaef9294bf7066a -msgid "" -"There are four styles to choose from when creating a Focus Item. Each style " -"has different configuration options relevant to the layout they provide." -msgstr "" - -#: ../../channels/focus_items.rst:0 8c315744e9bd47acbf6fe7ed26a68ec6 -msgid "Screenshot showing the styles for Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:65 99db116510604123aa3648af243ca698 -msgid "Bar" -msgstr "" - -#: ../../channels/focus_items.rst:66 757e70d5ca6d4e489e9ea9ca0b6c8e79 -msgid "" -"The Bar style creates a line across the top or bottom of the page, which " -"includes the content of your Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:68 41292e5ba4b542d6b96a29d29b22e42e -msgid "" -"**Allow hide** - when set to Yes, website visitors have a small arrow to " -"hide the bar. The arrow shows on the right hand side of the bar. Once " -"clicked, the bar shrinks to hide the content but the arrow is still be " -"visible in case they want to maximise it again with a single click. If set " -"to No, the visitor can't hide the bar." -msgstr "" - -#: ../../channels/focus_items.rst:69 187f3a87e63a416ba0929ddddce4f03f -msgid "" -"**Push page down** - This option allows the bar to push the page content up " -"or down under the bar if set to Yes. If set to No, the bar covers the " -"content at the top or bottom of the page depending on placement setting." -msgstr "" - -#: ../../channels/focus_items.rst:70 581495de1f9a4852a002f8f7934a9bc1 -msgid "" -"**Make sticky** - If set to Yes, the bar stays anchored in position even " -"when the visitor scrolls the page. If set to No, the bar won't anchored and " -"disappears as the visitor scrolls the page, and re-appears as they reverse " -"the scroll." -msgstr "" - -#: ../../channels/focus_items.rst:71 d97a12f481b54c529b063736ef9cb5eb -msgid "" -"**Placement** - This option allows you to display the bar at the top or the " -"bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:74 c92e3c466ae24a828f8b334d38790895 -msgid "" -"**Size** - This option allows you to specify the thickness of the bar, and " -"the font size. The options include:" -msgstr "" - -#: ../../channels/focus_items.rst:73 30a5983e02114aadb1d89e669382e742 -msgid "**Large** - 50px height and 17pt font" -msgstr "" - -#: ../../channels/focus_items.rst:74 0eb9056af5a446e19e726a1e61d0b53a -msgid "**Regular** - 30px height and 14pt font" -msgstr "" - -#: ../../channels/focus_items.rst:77 43163e0b9a8247c9a16860653aedca77 -msgid "Modal" -msgstr "" - -#: ../../channels/focus_items.rst:78 7011bd0f024e4243a77d8f8226cee467 -msgid "" -"The Modal style is probably the most popular style, and is often referred to" -" as a pop-up or a light box." -msgstr "" - -#: ../../channels/focus_items.rst:80 604b5370f0384dbe99a8826fb676f97b -msgid "" -"Modals are small boxes which appear aligned horizontally centred on the " -"page. The content behind the pop-up darkens when the Focus Item is active, " -"which helps to draw attention - focus - to the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:82 a193d65f8f5f4e5aaa957cd11c025080 -msgid "" -"**Placement** - This option allows you to select whether you would like the " -"Modal to appear at the top, middle or bottom of the page." -msgstr "" - -#: ../../channels/focus_items.rst:85 9a09789f34694ac4980a138834c7039c -msgid "Notification" -msgstr "" - -#: ../../channels/focus_items.rst:87 717d3db8ba914af1a48015ee42f49a8b -msgid "" -"The Notification style is a small box which appears, sometimes referred to " -"as a pop-up. Unlike with the Modal style, the pop-up shows in one of the " -"four corners of the page, and the main content underneath the notification " -"isn't darkened out behind the pop-up." -msgstr "" - -#: ../../channels/focus_items.rst:89 ef662fe43bd74db2b378f24464755072 -msgid "" -"Visitors can choose to close this type of Focus Item with the *X* button in " -"the top right corner of the notification." -msgstr "" - -#: ../../channels/focus_items.rst:91 c0195156615e49348f678e2aafb93a59 -msgid "" -"**Placement** - This option allows you to select the corner to display the " -"notification." -msgstr "" - -#: ../../channels/focus_items.rst:94 17e156c59e9749ffa0f978cffa0d2e15 -msgid "Full page" -msgstr "" - -#: ../../channels/focus_items.rst:96 31b4952d7fe34bc6a1a50a2fe29fada5 -msgid "" -"The full page Focus Item completely takes over the whole page, hiding the " -"rest of the page content until the visitor clicks the *X* button in the top " -"right hand corner of the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:98 ce658177e3ee4ca98cecce29f50ef467 -msgid "" -"There are no additional configuration options for this style of Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:101 98cee54908a84a6392306a9782b837e0 -msgid "Colors" -msgstr "" - -#: ../../channels/focus_items.rst:103 a260f8089bf9484c966a5929e80fde30 -msgid "" -"By default, Mautic determines the top colors extracted from the snapshot. " -"Four colors are currently supported. You can customize colors by using the " -"color picker or entering a hex code." -msgstr "" - -#: ../../channels/focus_items.rst:105 1921da35faca42c08532d35bec085170 -msgid "" -"**Primary color** - For the Bar style, the primary color is the background " -"color of the bar - For the Modal, Notification and full page styles, the " -"primary color is the outline around the Focus Item with a thicker line on " -"top than on the other three sides." -msgstr "" - -#: ../../channels/focus_items.rst:108 e6bfdadad6674d3997e14297fda99579 -msgid "" -"**Text color** - The color of the headline text entered in the Content " -"section of the Focus Item editor" -msgstr "" - -#: ../../channels/focus_items.rst:109 71805814d63a4678bc221d1f1af6ea02 -msgid "" -"**Button color** - The background color for the button on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display a notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:110 858a7371875c4694b7f10a8edf21304a -msgid "" -"**Button text color** - The color for the button text on the Collect Data " -"and Emphasize Link Focus Item types. This option isn't available for the " -"Display Notice Focus Item type." -msgstr "" - -#: ../../channels/focus_items.rst:113 92afff129b874712b2ecd66fda911c63 -msgid "Content" -msgstr "" - -#: ../../channels/focus_items.rst:114 a7d159b0ca394333b59f9807bc7bb53d -msgid "" -"There are three editing modes to choose from when customizing Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:0 0ad0ff949b12438f8e7a33f14f66b4fc -msgid "Screenshot showing the content options for creating Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:121 e1983a084f824e99a4a43a78eeef8f44 -msgid "Basic" -msgstr "" - -#: ../../channels/focus_items.rst:122 1dd316c613a748718e8108c7eda67399 -msgid "" -"This editor mode allows a simplified experience with a few fields - " -"depending on the Focus Item type - with the content being automatically " -"rendered on the Focus Item as it's created." -msgstr "" - -#: ../../channels/focus_items.rst:124 bd8638f224cd41c39c2e2c8b5d15bca1 -msgid "" -"**Headline** - This is the main text used on the Focus Item. The aim is to " -"capture the visitor's interest and attention." -msgstr "" - -#: ../../channels/focus_items.rst:125 c3652286e27f426197531fb572c7479c -msgid "" -"**Tagline** - This option is only available for Emphasize a Link Focus Item " -"types. It allows you to provide a second line of text to add more incentive " -"for the visitor to click the link. This field is optional." -msgstr "" - -#: ../../channels/focus_items.rst:126 bf0d5b6233814c0f84eeda2a5c487943 -msgid "" -"**Font** - This option allows you to select from available fonts used in the" -" Focus Item. The font list isn't customizable." -msgstr "" - -#: ../../channels/focus_items.rst:127 b3c76d598be8479e9717d8b74d723985 -msgid "" -"**Select the Form to insert** - This option is only available for Collect " -"Data Focus Item types. It allows you to select an existing Mautic Form to " -"use with the Focus Item. For styling and formatting reasons, you may want to" -" create a Form specifically for the Focus Item, adding styling attributes to" -" the Attributes tab on the Form fields." -msgstr "" - -#: ../../channels/focus_items.rst:128 6ec195eabdf0414bb8a6a64ce765cd24 -msgid "" -"**Link text** - This option is only available for Emphasize a Link Focus " -"Item types. It allows you to specify the text used on the Focus Item's " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:129 4d33b8feecb447a08b75b0ee82fffbf1 -msgid "" -"**Link URL** - This option is only available for Emphasize a Link Focus Item" -" types. It allows you to specify the URL where you'd like to drive visitors " -"with the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:130 b5504626f71f4828826d62205c8e5976 -msgid "" -"**Open in a new window** - This option is only available for Emphasize a " -"Link Focus Item types. If set to Yes, this ensures that the link is opened " -"in a new window. If set to No, the link opens in the current tab." -msgstr "" - -#: ../../channels/focus_items.rst:133 9234fe5c43d346688feb84190c0932ce -msgid "Editor" -msgstr "" - -#: ../../channels/focus_items.rst:134 62c68cce38f04560b63dc37ca070f9cf -msgid "" -"This allows the User to edit the content with the global editor available in" -" Mautic." -msgstr "" - -#: ../../channels/focus_items.rst:137 256d2f285b2b44388f62a4069dd31cc1 -msgid "HTML" -msgstr "" - -#: ../../channels/focus_items.rst:138 2a5539e0f8b445b5b4ce52f14369a1e2 -msgid "" -"This allows the User to enter HTML into a blank field for a fully customized" -" Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:141 c7d455a6ec2b489a94dba445f32f95a9 -msgid "" -"If you decide to switch editing styles, ensure that you clear the data from " -"the previous style, otherwise Mautic may not display the final intended " -"content." -msgstr "" - -#: ../../channels/focus_items.rst:145 8fed27b2dc8c4344b4766f735da9a218 -msgid "Creating a Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:147 c0c68519c0a84244b7b8e4c3bc980895 -msgid "" -"To create a new Focus Item, go to Channels > Focus Items and click the New " -"button." -msgstr "" - -#: ../../channels/focus_items.rst:150 9f4c5ceebfad4b169676f1f0c66567c0 -msgid "" -"Some websites won't allow the preview to display. For the preview to work, " -"the site must use an SSL certificate, and it must not block iframe previews " -"with the ``x-frame-options: SAMEORIGIN`` header. An error will be displayed " -"in the Focus Item builder if these conditions are not met." -msgstr "" - -#: ../../channels/focus_items.rst:152 e73f38944f614c3fb02d3ca9e50bca50 -msgid "When creating a new Focus Item, you can set the following fields:" -msgstr "" - -#: ../../channels/focus_items.rst:154 f536d538250240ccbb613149e61e04c7 -msgid "**Name** - A name used internally to identify the Focus Item" -msgstr "" - -#: ../../channels/focus_items.rst:156 c1d3640c78c84778b52f46987f1509e6 -msgid "" -"**Website** - A website you would like to use to preview the Focus Item as " -"you are building it - see preceding note, some websites won't allow this " -"feature. If this is a problem, leave the URL field blank." -msgstr "" - -#: ../../channels/focus_items.rst:158 4cb06240b5a8404bb20671499d9ec9f8 -msgid "" -"**Category** - Assign a Category to help you organize your Focus Items." -msgstr "" - -#: ../../channels/focus_items.rst:160 e7d141e258e5461cacff570db8992e5b -msgid "" -"**Published** - Whether the Focus Item is available for use - published - or" -" not available - unpublished" -msgstr "" - -#: ../../channels/focus_items.rst:164 2ef9cc8013f542d3a4788241b9cd765d -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/focus_items.rst:166 3e73eb0f00ef499ab659e0c65a6dae34 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/focus_items.rst:170 c64b4d8d10b64322b9594f43a10aed59 -msgid "" -"**Google Analytics UTM tags** - Mautic supports UTM tagging in Emails, Focus" -" Items, and Landing Pages. Any UTM tags with values populated are " -"automatically appended to the end of any links used in the focus item. See " -":doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../channels/focus_items.rst:0 f7e4a347d17b4dfa8ad5d8d57a77e886 -msgid "Screenshot showing the creation of a Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:179 0e05b864f9224c998ecadce7f3cc2364 -msgid "Using the Focus Item builder" -msgstr "" - -#: ../../channels/focus_items.rst:183 af28943505b041c49d2bd648d38ebfca -msgid "" -"After you specify the general information for the Focus Item, click the " -"builder option in the top right corner. If you've specified a URL in the " -"Website field on the details page, the system displays a preview. If you " -"don't see a preview, the website might block iframe previews. Hence, you may" -" need to add the focus item to a development or staging environment without " -"these security restrictions - if available - to see the preview." -msgstr "" - -#: ../../channels/focus_items.rst:186 454c2f4ed2904ab5b8583b3bf73dfbe2 -msgid "" -"The preview of the website doesn't appear until you select a style from the " -"options on the Focus Item Builder." -msgstr "" - -#: ../../channels/focus_items.rst:0 92b6ed80ac17482a97fa15398e376c6c -msgid "Screenshot showing the Focus Item Builder" -msgstr "" - -#: ../../channels/focus_items.rst:192 efd79044217d4924ba9d259e9cc93df3 -msgid "" -"You can use the menu on the sidebar to configure the Focus Item to your " -"liking. The preview area on the left allows you to see how it appears on " -"your website. You can also use the mobile phone icon at the top right to " -"switch to a responsive view. This is important to ensure that you aren't " -"blocking key elements of the User Experience on mobile devices." -msgstr "" - -#: ../../channels/focus_items.rst:0 096d840bdbe2439d989cf4ca8715c4f6 -msgid "Screenshot showing the Focus Item Builder in responsive mode." -msgstr "" - -#: ../../channels/focus_items.rst:199 03095e779305423081bd306a39e7a37c -msgid "Using Focus Items" -msgstr "" - -#: ../../channels/focus_items.rst:201 415fa7e9144a4454926d5678317ba85c -msgid "" -"Once you have created your Focus Item, you're ready to publish it to your " -"website. If you're not quite ready for the Focus Item to go live but you " -"need to get it set up on your website, you can set the Focus Item to " -"Unpublished." -msgstr "" - -#: ../../channels/focus_items.rst:204 da76149b41bf4d6b90ef98aacfad4613 -msgid "Deploying to a website" -msgstr "" - -#: ../../channels/focus_items.rst:206 c16fb782497e4f879bd59657825b5d3e -msgid "" -"When you save the Focus Item, the code snippet required to display it on " -"your website is shown in a green box on the Focus Item overview." -msgstr "" - -#: ../../channels/focus_items.rst:0 7d992349146a4ce8b79a95515feb9c42 -msgid "" -"Screenshot showing the Focus Item code to be embedded within a website." -msgstr "" - -#: ../../channels/focus_items.rst:213 45086917aa07429fb0ed04e0ce500982 -msgid "" -"You may need assistance from your web development team to implement the " -"Focus Item tracking code on your website." -msgstr "" - -#: ../../channels/focus_items.rst:215 a61b12a5e6a14eb7867280ba6befc7eb -msgid "" -"You must also ensure that you have specified your website's domain where you" -" expect to use the Focus Item in the CORS settings for your Mautic instance," -" otherwise it won't appear. To verify this, go to Settings > Configuration >" -" System Settings > CORS Settings and set Restricted Domains to Yes. Ensure " -"that you specify your domain in the relevant field. Alternatively (but not " -"recommended, as this would allow other websites to display your Focus " -"Items), set Restrict Domains to No and don't specify your domains." -msgstr "" - -#: ../../channels/focus_items.rst:220 f26c9b53d97f44b0b286c7a8abc97135 -msgid "Deploying through a Campaign" -msgstr "" - -#: ../../channels/focus_items.rst:224 1b24a3c5cd8b4c4d9ef0bb03fbf0a090 -msgid "" -"It's possible to trigger a Focus Item to appear as part of a Campaign " -"workflow. This doesn't require you to paste the Focus Item code onto your " -"website as it's delivered through the existing Mautic Tracking Code." -msgstr "" - -#: ../../channels/focus_items.rst:226 6d212c800c7947508cdeb4d05cbd3ba1 -msgid "" -"Within the Campaign, add a decision for ``Visits a Page``, and then select " -"the Action of ``Show Focus Item``. Note that you must precede it by ``Visits" -" a Page`` to trigger the Focus Item." -msgstr "" - -#: ../../channels/focus_items.rst:229 49448d9d048f40c1a1ca2332ecf4365b -msgid "" -"Sometimes the Campaign Action can be unreliable and it's dependent on your " -"Campaign steps, so it's recommended to use the direct embedding method in " -"most cases." -msgstr "" - -#: ../../channels/focus_items.rst:232 cfc8f6760ce045edaae3ca64f0c3026f -msgid "Measuring success" -msgstr "" - -#: ../../channels/focus_items.rst:234 b70c854335e3407e8f00c54f2dfd0d86 -msgid "" -"When using the Emphasize a Link type, Mautic displays the link on the Focus " -"Item overview where you can view the number of unique clicks." -msgstr "" - -#: ../../channels/focus_items.rst:236 2ca08a2a50ae4dd9b12b0add3e9c7954 -msgid "" -"If you change the link in a Focus Item after deployment, all links are " -"listed in the overview." -msgstr "" - -#: ../../channels/focus_items.rst:238 b0ee245eeba6439d8e893e8eb19ed1d5 -msgid "" -"Additionally, Mautic applies UTM tags on Focus Items to both Form " -"submissions and link clicks. If you are using a Focus Item to submit a Form," -" it's recommended that you have a Submit Action on the Form to record the " -"UTM tags." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/channels/marketing_messages.po b/docs/locale/zh_TW/LC_MESSAGES/channels/marketing_messages.po deleted file mode 100644 index c9806d2b..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/channels/marketing_messages.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/marketing_messages.rst:2 f0ab793f0293498f888fd4d942196eac -msgid "Marketing Messages" -msgstr "" - -#: ../../channels/marketing_messages.rst:5 afe543ad44aa4a9cb062b37551a258f2 -msgid "What are Marketing Messages?" -msgstr "" - -#: ../../channels/marketing_messages.rst:7 b23eb3d9d2a041d8832c1a9f761ed9d0 -msgid "" -"Located under the Channels section in Mautic, Marketing Messages is one of " -"the Channels available to you through which you can optimize and personalize" -" communication with your customers." -msgstr "" - -#: ../../channels/marketing_messages.rst:9 df4f8e4c3e2d4b0792da5aa2848ba658 -msgid "" -"Marketing messages allow you to empower the customer to decide how they " -"prefer to receive the content you send, by setting the Channel they prefer." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 b72ad656988e4ed78f1c1b3dcab7d162 -msgid "" -"Screenshot showing the Marketing Messages option in the main navigation menu" -" of Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:15 f3989c2490d4435cac671a56944986c1 -msgid "" -"With Marketing Messages, you can create content and make it available " -"through multiple Channels - Email, SMS, Browser Notification, Mobile " -"Notification, Tweets, and any other Channel you decide to create using " -"Mautic's extendable open architecture." -msgstr "" - -#: ../../channels/marketing_messages.rst:17 1c38e20ba1e04f279e30670fcbabc65c -msgid "" -"When using the 'Send Marketing Message' action in a Campaign, you can create" -" the message in any or all of these Channels. If the Contact has a Channel " -"preference set on their profile, Mautic sends the content on the preferred " -"Channel. If they haven't specified a Channel, Mautic uses the default " -"Channel - Email." -msgstr "" - -#: ../../channels/marketing_messages.rst:19 0da45fa2f40a4c84b1e1e065aa6659f2 -msgid "" -"It's also possible for a Contact to specify their own frequency rules and " -"pause communication all together on a Channel. When exceeding the defined " -"limit and scheduling a Marketing Message, Mautic uses another Channel which " -"has available frequency." -msgstr "" - -#: ../../channels/marketing_messages.rst:24 14dd2db34ae9470295662c22fd3eb218 -msgid "Creating a Marketing Message" -msgstr "" - -#: ../../channels/marketing_messages.rst:28 0a4c3d79904745e1b2313f5cef8c8b36 -msgid "" -"To create a new Marketing Message, navigate to the Channels section and " -"click Marketing Messages. Click on New." -msgstr "" - -#: ../../channels/marketing_messages.rst:30 9822b23bfe244829a8d3794e8fdd265a -msgid "" -"Provide a name and description for the Marketing Message, then choose the " -"Channels you wish to use." -msgstr "" - -#: ../../channels/marketing_messages.rst:33 d023b6eb42754742a35fcbaff45fd327 -msgid "" -"You must set up and configure the Channels before they become available - if" -" you haven't set up Mobile Notifications or Text Messages, you won't see it " -"as an option when creating a Marketing Message." -msgstr "" - -#: ../../channels/marketing_messages.rst:0 e9b58e54ec904a63b286334a96d757c2 -msgid "Screenshot showing the creation of a new Marketing Message in Mautic." -msgstr "" - -#: ../../channels/marketing_messages.rst:39 b831279aecc5458b8df2f001fd164ff3 -msgid "" -"To enable a Channel, click Yes on the slider, and select - or create - the " -"message." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/channels/push_notifications.po b/docs/locale/zh_TW/LC_MESSAGES/channels/push_notifications.po deleted file mode 100644 index 242164a1..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/channels/push_notifications.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/push_notifications.rst:2 4ead9de4d33f4c42b62a0b6c7bf69a5e -msgid "Mobile push notifications" -msgstr "" - -#: ../../channels/push_notifications.rst:4 3542dcd274c54ee493ecfea81512bd60 -msgid "" -"Mobile notifications integrate your iOS and Android app with " -":xref:`OneSignal`. Using your own OneSignal account, you can now push a " -"notification to your Contacts's mobile device - with their permission. " -"Enable the Plugin in Mautic's Plugin manager to see Mobile Notifications " -"listed under Channels in the menu." -msgstr "" - -#: ../../channels/push_notifications.rst:6 a0229415a77a4880a6e789aed3ea0419 -msgid "" -"For more detailed information see the :xref:`OneSignal iOS` and " -":xref:`OneSignal Android` documentation." -msgstr "" - -#: ../../channels/push_notifications.rst:9 196fa5de01c848f7bfe2acf6dbcf4e7c -msgid "Setup" -msgstr "" - -#: ../../channels/push_notifications.rst:14 488aea8419d34da8ab59fd3a72911d03 -msgid "iOS code for OneSignal integration" -msgstr "" - -#: ../../channels/push_notifications.rst:16 7aa433a61fad491fa283ade34b1102cd -msgid "" -"To enable Push Notifications in your iOS app, add the following code - or a " -"variant of it - inside your ``application`` func of ``AppDelegate``. The " -"code examples below use Swift 3.1. Please modify them to your needs if you " -"are using C#." -msgstr "" - -#: ../../channels/push_notifications.rst:36 779d2ddcc59747cd80a929ccdbbee9c9 -msgid "" -"For ease of use, we've created the following struct and func for sending " -"user data to Mautic. Create this struct in your app, and import it where " -"appropriate." -msgstr "" - -#: ../../channels/push_notifications.rst:39 5eb209f51ed24efbb79f1656fbf85050 -msgid "UserData struct" -msgstr "" - -#: ../../channels/push_notifications.rst:58 c0a6ff21c7ae4c40bbac50fea7559710 -msgid "pushUserDataToMautic func" -msgstr "" - -#: ../../channels/push_notifications.rst:60 cbd3c0b2e2144ee9968cd58553c15d51 -msgid "" -"This is a basic function for pushing the UserData struct to your Mautic " -"installation. It will push the User data, and then display the response from" -" Mautic as an app alert. Modify to meet the needs of your app." -msgstr "" - -#: ../../channels/push_notifications.rst:94 68ec437b25cf47a190796e7ab016c161 -msgid "Notification statistics" -msgstr "" - -#: ../../channels/push_notifications.rst:96 ed5e5cdf77c24289bd535553d4dbf4ee -msgid "" -"In addition to the UserData that gets pushed to Mautic, you can push open / " -"interaction stats to Mautic by sending the UserData struct, with an appended" -" stat JSON key." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/channels/sms.po b/docs/locale/zh_TW/LC_MESSAGES/channels/sms.po deleted file mode 100644 index bf98b737..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/channels/sms.po +++ /dev/null @@ -1,321 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/sms.rst:2 fdf1065c21d44ce4b5de69ed864058b4 -msgid "SMS Text messages" -msgstr "" - -#: ../../channels/sms.rst:4 4624b31453584254ac862e5d9f8d327d -msgid "" -"With the SMS Channel it's possible to send text messages from Campaigns in " -"Mautic." -msgstr "" - -#: ../../channels/sms.rst:7 8cc7bbe8188f49699ef25752028ec8ec -msgid "" -"To use this Channel you must first set up an SMS transport, such as " -":doc:`/plugins/twilio`." -msgstr "" - -#: ../../channels/sms.rst:12 4de37dad546d4a2fb0e584541ab0682b -msgid "Type of Text Messages" -msgstr "" - -#: ../../channels/sms.rst:16 f19ad12bd2914bd091fcb245c5ed4931 -msgid "" -"Mautic allows you to create two types of Text Messages, in the same way as " -"you can create different types of Emails." -msgstr "" - -#: ../../channels/sms.rst:21 4a6ebc8087904397adb3da6a476328fa -msgid "Template Text Messages" -msgstr "" - -#: ../../channels/sms.rst:25 98cfb2c7c11a4dd18caabacfb8bad5e8 -msgid "" -"A template Text Message is automatically sent by Campaigns, Forms, Point " -"triggers etc. You can edit Template Text Messages after creation, but they " -"can't manually send them to a Contact list." -msgstr "" - -#: ../../channels/sms.rst:30 227521856bd4420bbdaab5b0305404f4 -msgid "Segment Text Messages" -msgstr "" - -#: ../../channels/sms.rst:34 38010db0857d489bb8b24e05a4e7e71d -msgid "" -"A Segment Text Message can be manually sent to Contact lists - Segments - in" -" Mautic. Once sent, you can't edit the Text Message, however you can send it" -" to new Contacts as they join the associated Segment." -msgstr "" - -#: ../../channels/sms.rst:36 0c0d7e5492e6483eb9cad362293cf489 -msgid "" -"Note that these are marketing Text Messages by default, and each Contact can" -" only receive the Text Message once - it's the same principle as a mailing " -"list." -msgstr "" - -#: ../../channels/sms.rst:38 2cdeb0f954f14afea69e25e06aa659a4 -msgid "" -"You must initiate the send of Segment Text Messages with the ``Send " -"Scheduled Broadcast`` cron job. See :doc:`cron jobs documentation " -"` for more information." -msgstr "" - -#: ../../channels/sms.rst:43 aef37f6406054525ae46f604c0bf1879 -msgid "Creating a Text Message" -msgstr "" - -#: ../../channels/sms.rst:47 a0c19c64162842678b44208a262b7cc4 -msgid "" -"To create a Text Message, navigate to Channels > Text Messages and click the" -" 'New' button." -msgstr "" - -#: ../../channels/sms.rst:0 3b3f542e23854f5090574108f67e5699 -msgid "Screenshot showing create new SMS button" -msgstr "" - -#: ../../channels/sms.rst:53 72706e35a0b04d049886d136f79e61d7 -msgid "" -"Select whether you wish to create a Template or Segment Text Message, which " -"presents the required fields." -msgstr "" - -#: ../../channels/sms.rst:58 a20646d8c71647bdb03623fd93cf9c27 -msgid "Template Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:62 ../../channels/sms.rst:89 -#: e50f922f637846ec8621d7ae491e64f2 7a9c093388454864bd02f0c9b4c03817 -msgid "The following fields are available:" -msgstr "" - -#: ../../channels/sms.rst:0 06f8e4f0423a49fd851aa7b520759660 -msgid "Screenshot showing the fields required for a new Template Text Message" -msgstr "" - -#: ../../channels/sms.rst:68 3367755233f5455a9a5835d5cf35cc71 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:72 0a4e25a5b4f841dcabdb60b64cc63fc6 -msgid "" -"**Text Message** - This is the actual content of the Text Message which is " -"sent to the Contact. There is a character count below the field which helps " -"you to identify the required number of messages to send the full text. You " -"may use tokens, such as ``{contactfield=firstname}``. To find the " -"appropriate token, go to Settings > Custom Fields and use the field alias " -"with the token format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:76 ../../channels/sms.rst:103 -#: ae25c47cc23a480fad256f4c3b534984 e48f8a3a1afd431fabe280d518b647c2 -msgid "" -"**Category** - This allows you to select a Category to help you with " -"organizing your Text Messages." -msgstr "" - -#: ../../channels/sms.rst:78 ../../channels/sms.rst:105 -#: d57996641d7947a2b1f0994180e6eb0c 10b5ee51960a4fbc86c89241229abd9c -msgid "" -"**Language** - This allows you to set the language of this Text Message." -msgstr "" - -#: ../../channels/sms.rst:80 ../../channels/sms.rst:107 -#: db6af2bbb49b4bb89341ed61008743dd 81efbf9fc2864a1592f58ced703a57b4 -msgid "" -"**Published** - This allows you to set the published status of the Text " -"Message. Unpublished Text Messages aren't sent." -msgstr "" - -#: ../../channels/sms.rst:85 9d212786d6c14c5789fbaec4e19ca30c -msgid "Segment Text Message fields" -msgstr "" - -#: ../../channels/sms.rst:0 cd05084cc125405dad58b3cf2879ff22 -msgid "Screenshot showing the fields required for a new Segment Text Message" -msgstr "" - -#: ../../channels/sms.rst:95 25df144a3d1f4a629e15711585051135 -msgid "" -"**Internal name** - This is the internal name used within Mautic when " -"referring to this Text Message. For example, Mautic uses this in dropdown " -"selection lists in the Campaign Builder." -msgstr "" - -#: ../../channels/sms.rst:99 667a3f0678f54976869a6998952f1aba -msgid "" -"**Text Message** - This is the actual content of the Text Message sent to " -"the Contact. There is a character count below the field which helps you to " -"identify the required number of messages to send the full text. You may use " -"tokens, such as ``{contactfield=firstname}``. To find the appropriate token," -" go to Settings > Custom Fields and use the field alias with the token " -"format: {contactfield=fieldalias}." -msgstr "" - -#: ../../channels/sms.rst:109 431d8948f3ab4051b34bacd4f5012ba5 -msgid "" -"**Contact Segment** - This allows you to define the Segment/s who should " -"receive the Text Message." -msgstr "" - -#: ../../channels/sms.rst:113 e5a66ca2f10141a0bdc569aea72877a0 -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Text Message is available for sending to Contacts" -msgstr "" - -#: ../../channels/sms.rst:115 323c6a6f94a24da291d5ddafd8bf4e07 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Text Message ceases to be available for sending to Contacts." -msgstr "" - -#: ../../channels/sms.rst:118 0730f746bd7e463cb5e71673d99d619d -msgid "Creating Text Messages from Campaign Builder" -msgstr "" - -#: ../../channels/sms.rst:122 507cd84ffa794f509413aaf3a67606bc -msgid "" -"It's also possible to create a Text Message from within the Campaign " -"Builder. To do this, select the Campaign Action of Send Text Message and " -"press the New Text Message button rather than selecting an existing Text " -"Message in the dropdown." -msgstr "" - -#: ../../channels/sms.rst:0 c7eab91230db4bc7969f4fbb8fe1e611 -msgid "Screenshot showing the option to create an SMS from a Campaign" -msgstr "" - -#: ../../channels/sms.rst:128 a9f0fcde4f19429b87abb8c6cb1a52b8 -msgid "" -"As you plan to use this Text Message within a Campaign, it's by default " -"created as a Template Text Message and show the relevant fields accordingly." -msgstr "" - -#: ../../channels/sms.rst:133 7d0d47bb1b5c499e81cf053399721991 -msgid "Sending Text Messages as a Marketing Messages" -msgstr "" - -#: ../../channels/sms.rst:137 6fbf8e9d88694b83956accfd37db2fef -msgid "" -"Mautic allows you to create a single message - for example 'Red shoes on " -"offer today!' - in multiple Channels, and have it delivered through the " -"Channel which the Contact prefers. This means that they only receive the " -"message once, and through their preferred Channel. You can create the " -"messages under the :doc:`/channels/marketing_messages` section." -msgstr "" - -#: ../../channels/sms.rst:139 3e4e314928e44370b370779853ec6f52 -msgid "" -"If a Contact's preferred Channel is Text Messages, Mautic delivers the " -"message through the Text Message Channel when a Marketing Message includes a" -" Text Message." -msgstr "" - -#: ../../channels/sms.rst:0 1e690095221047af87b80306265a5e0c -msgid "" -"Screenshot showing the option to send a Text Message as a Marketing Message" -msgstr "" - -#: ../../channels/sms.rst:146 9180f44aa3574dd88f2fe06ba64af865 -msgid "Managing unsubscribes" -msgstr "" - -#: ../../channels/sms.rst:149 675223c63ef14dd5a6ddd67e90ae3a34 -msgid "" -"In order for Mautic to process Text Message replies for unsubscribes and " -"replies to messages, you must first configure the Webhook. For more " -"information review the :doc:`/plugins/twilio` documentation." -msgstr "" - -#: ../../channels/sms.rst:151 607e729ff92d4c98a30075809d0434df -msgid "" -"Contacts can unsubscribe from your Text Messages by replying with the word " -"``STOP``, or any of the accepted phrases (``STOP``, ``STOPALL``, " -"``UNSUBSCRIBE``, ``CANCEL``, ``END``, and ``QUIT``), to your SMS. Once " -"Mautic receives this SMS, Mautic flags the specific Contact as 'Do Not " -"Contact' (DNC) for the SMS Channel, and won't allow messages again via this " -"Channel unless the Contact manually re-subscribes at a later date." -msgstr "" - -#: ../../channels/sms.rst:153 8f3f73abead74a1993c50948c162c284 -msgid "You can also view SMS replies in the Contact timeline:" -msgstr "" - -#: ../../channels/sms.rst:0 58f141d3ed994f4e84ed36afd1477a48 -msgid "Screenshot showing the reply from SMS" -msgstr "" - -#: ../../channels/sms.rst:162 f5c5e731b4334adf8802ba0d9b9183d6 -msgid "Working with replies to Text Messages" -msgstr "" - -#: ../../channels/sms.rst:166 e7bb73ee1af44ebea0c47b131796ee8c -msgid "" -"In a Mautic Campaign, where Mautic has an active Text Message provider, " -"there is a Campaign Action called 'Sends a Text Message' which allows you to" -" monitor incoming replies for specific patterns and take action accordingly." -msgstr "" - -#: ../../channels/sms.rst:0 6ac60e5a55f14f40bc40b87eb4469a82 -msgid "Screenshot showing the Campaign action 'Sends a Text Message'" -msgstr "" - -#: ../../channels/sms.rst:172 73445548c82d491787073af849be2e24 -msgid "" -"This decision tracks replies to your messages and looks for specified " -"patterns within a message. This isn't dependent on you first sending the " -"Contact a message." -msgstr "" - -#: ../../channels/sms.rst:174 d4bf513904024b4ea3d3d79c81acd98a -msgid "" -"For example, you can specify 'red' in 'Pattern the reply should match'. If " -"your message contains language, such as reply from the Contact using the " -"word 'Red' to a question of their favourite shoe colour, Mautic looks for " -"incoming Text Messages with that pattern. In this example, you may add an " -"action on the decision's Yes path for adding a colour preference to the " -"Contact's profile." -msgstr "" - -#: ../../channels/sms.rst:177 43892cf435344fd1b48db941e17834eb -msgid "Important notes" -msgstr "" - -#: ../../channels/sms.rst:179 c10fae26209a4a208e51e472e9439eed -msgid "" -"Contact phone numbers should be in the format +XXXXXXX including the + and " -"with no spaces" -msgstr "" - -#: ../../channels/sms.rst:180 cca649ca1eff4e72907b1eb46c22abf5 -msgid "There must be a phone number in the Mobile Phone Contact field" -msgstr "" - -#: ../../channels/sms.rst:181 0730d121ff9f429b9ab480fafdf6db26 -msgid "" -"When configuring the Twilio Plugin, the sender number must be in the format " -"+XXXXXXX and this number associated with the Twilio account" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/channels/social_monitoring.po b/docs/locale/zh_TW/LC_MESSAGES/channels/social_monitoring.po deleted file mode 100644 index 0c99cd6d..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/channels/social_monitoring.po +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/social_monitoring.rst:4 47998a1a91ac44e280d710a41a917c2b -msgid "Social Monitoring" -msgstr "" - -#: ../../channels/social_monitoring.rst:8 004fb91424bf44ab956779b2336592c7 -msgid "" -"It's possible to add Contacts to Mautic through monitoring Twitter for " -"mentions and hashtags." -msgstr "" - -#: ../../channels/social_monitoring.rst:11 90a65a10ab4d469787abc29a6751d138 -msgid "Requirements" -msgstr "" - -#: ../../channels/social_monitoring.rst:13 dde6d260a44d49f1bf39c80fe327d38e -msgid "The :doc:`/plugins/twitter` plugin must be configured" -msgstr "" - -#: ../../channels/social_monitoring.rst:14 c138c512404f432fb80cfd69015a0b4b -msgid "" -"You must trigger the Social Monitoring :doc:`cron job ` " -"periodically." -msgstr "" - -#: ../../channels/social_monitoring.rst:19 05a56f5ebae04634b0e1c51e16008892 -msgid "Creating a Social Monitor" -msgstr "" - -#: ../../channels/social_monitoring.rst:23 8b796effd0c54a6fb5fa80a23eb32570 -msgid "" -"To create a new Social Monitor, go to Channels > Social Monitoring and click" -" New." -msgstr "" - -#: ../../channels/social_monitoring.rst:25 1756812ddb084bb0bb5b76567f80126a -msgid "Mautic offers two options when creating a Social Monitor:" -msgstr "" - -#: ../../channels/social_monitoring.rst:27 e84b55a257604bc88aeaab3dfb86f38e -msgid "" -"**Twitter mention** - Any time someone mentions a specified username, Mautic" -" creates them as a Contact" -msgstr "" - -#: ../../channels/social_monitoring.rst:28 cf7ff130ccb243f9813c5d35d7f8b5c5 -msgid "" -"**Twitter hashtag** - Any time someone uses a specified hashtag in a tweet, " -"Mautic creates them as a Contact." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 b2fa66ce4ea840f281e2b4f6c961cdd3 -msgid "Screenshot showing the creation of a new Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:35 94bdb1411bca4ab38bb16e8f1dd52334 -msgid "Social mentions" -msgstr "" - -#: ../../channels/social_monitoring.rst:37 5d93ff8a7db944488d54c0a291e7ed04 -msgid "" -"When selecting the Twitter Mention monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:39 2108c36213b14d8a8c73a71f70eed79c -msgid "" -"**Twitter mention** - The Twitter handle you want to track mentions of. " -"Don't include the @ symbol - for example ``mauticcommunity``." -msgstr "" - -#: ../../channels/social_monitoring.rst:40 -#: ../../channels/social_monitoring.rst:67 ecc6b001786e48cea0a1c33126161b0e -#: ec80abb8d4784ff993b59534aaf75fbc -msgid "" -"**Description** - A description to use internally within Mautic to tell the " -"marketer what the monitor is tracking." -msgstr "" - -#: ../../channels/social_monitoring.rst:41 -#: ../../channels/social_monitoring.rst:68 28d11fcdffed4065b0764001be7300e4 -#: 254749d3552c48a6abf85e41e140a551 -msgid "" -"**Match Contact names** - If set to Yes, Mautic tries to match the names of " -"Contacts created from Twitter and associate the Twitter account with their " -"existing Contact record. If set to No, this won't happen and you are likely " -"to experience duplicated Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:43 -#: ../../channels/social_monitoring.rst:70 42179e89bda5435e9f84469b2e8ac790 -#: 717ad51f15f04df7a86684cdac351d75 -msgid "There are also the standard Mautic fields available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:45 9d0ba66e46cb471f9324169bdec80704 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors will not collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:49 ee8c0d1667db40d9b391c1ab1be0571b -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. You might use this" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:51 b1798d8cc8fd479198ba20e57d33f82d -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor is monitoring for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:55 -#: ../../channels/social_monitoring.rst:82 ea25c2ee330d4c7bb77d3d570b50f27c -#: ea038549086440f8b032acd9765a0d9d -msgid "" -"**Contact Segment** - This allows you to define the Segment/s in Mautic that" -" the Contacts join if detected with this Social Monitor. This can be useful " -"for identifying people who are talking about your brand, and directly add " -"them to a Segment to take further action." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 2483a1d17183482285f8b1fee4284e5f -msgid "" -"Screenshot showing the creation of a new Twitter Mentions Social Monitor." -msgstr "" - -#: ../../channels/social_monitoring.rst:62 69ad06d1ec254b3aa49e279da9ae7c28 -msgid "Hashtags" -msgstr "" - -#: ../../channels/social_monitoring.rst:64 4c41fbfc5e724f48bdc08477ac8b34a1 -msgid "" -"When selecting the Twitter Hashtags monitoring method, the following fields " -"are available:" -msgstr "" - -#: ../../channels/social_monitoring.rst:66 d004b18ab1e5420db2d8f322b9a3760f -msgid "" -"**Twitter hashtag** - The Twitter hashtag mentions you want to track. Don't " -"include the # symbol - for example ``mautic``." -msgstr "" - -#: ../../channels/social_monitoring.rst:72 a6b04fdf9d1b46678dba7b5eb1331d73 -msgid "" -"**Published** - This allows you to set the published status of the Social " -"Monitor. Unpublished Social Monitors won't collect new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:76 4834467f3b1a45d8b155fd15e93ad6ce -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Social Monitor is monitoring for new Contacts. This might be used" -" to coincide with an event, for example." -msgstr "" - -#: ../../channels/social_monitoring.rst:78 6cdefb6d735d4d60892971dc73b81db5 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Social Monitor ceases to monitor for new Contacts." -msgstr "" - -#: ../../channels/social_monitoring.rst:0 80ef1195d9034be0a5fafac543cd183b -msgid "" -"Screenshot showing the creation of a new Twitter Hashtags Social Monitor." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/channels/utm_tags.po b/docs/locale/zh_TW/LC_MESSAGES/channels/utm_tags.po deleted file mode 100644 index 746ebe0e..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/channels/utm_tags.po +++ /dev/null @@ -1,269 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/utm_tags.rst:2 ../../channels/utm_tags.rst:38 -#: 54008e55f61542c99a52fc4b45706f71 896e4d6df1ac48d3a3743d5d080a465f -msgid "UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:4 96a2b198bb1d430883dcc4616b068720 -msgid "" -"UTM tags are also known as parameters or short text codes. When adding these" -" tags to URLs or links, marketers can track performance, create customised " -"audiences, and analyze on website traffic from various sources. Marketers " -"can also use UTM tags with Google Analytics to clearly understand the " -"effectiveness of their marketing content and return on investment for " -"marketing projects." -msgstr "" - -#: ../../channels/utm_tags.rst:7 5aa5131925a04599a45eebeaab671c5f -msgid "Key benefits of using UTM tags" -msgstr "" - -#: ../../channels/utm_tags.rst:9 d3eda0d5a93b4ceabffaef6b7f5afa4d -msgid "With UTM tags, you can:" -msgstr "" - -#: ../../channels/utm_tags.rst:11 9121de28c02d4d3a8c957698bcb1bcd5 -msgid "Track the value of marketing projects and measure return on investment" -msgstr "" - -#: ../../channels/utm_tags.rst:12 f656b7bce9944693aac463a51183077f -msgid "Get precise data about conversion and traffic sources" -msgstr "" - -#: ../../channels/utm_tags.rst:13 ddd0fc9c52864b15a2a1a6a29f88381e -msgid "Test the effectiveness of marketing content through A/B testing" -msgstr "" - -#: ../../channels/utm_tags.rst:16 f93fcc9f0b874a06a949396ddf491f08 -msgid "Using UTM tags in Mautic" -msgstr "" - -#: ../../channels/utm_tags.rst:18 3e293c6b6ea04f94a537b77074b22ccd -msgid "" -"To use UTM tags with Google Analytics where they appear in your Google " -"Analytics Dashboard, you must install your Google Analytics tracking code on" -" the resource you are linking to. This synchronizes with your Google " -"Analytics Dashboard and records the UTM tags." -msgstr "" - -#: ../../channels/utm_tags.rst:20 2cf8d48ec1e0493d8ca99b61f5a5bf90 -msgid "" -"If you use a Mautic landing page, you must go to Settings > Configuration > " -"Tracking Settings, and add your Google Analytics ID." -msgstr "" - -#: ../../channels/utm_tags.rst:0 c0a1a7dffc024191a3a2e6ce5e6d84bc -msgid "Screenshot showing the option to add Google Analytics code" -msgstr "" - -#: ../../channels/utm_tags.rst:26 b03c9f1e6d0244a480f36a936bcfcee8 -msgid "" -"If you use a non-Mautic Landing Page, you must manually embed the Google " -"Analytics tracking script on the third-party Page." -msgstr "" - -#: ../../channels/utm_tags.rst:28 7bba4ce4ef8a44c987dfe09777f03deb -msgid "" -"Mautic Users can automatically append UTM tags to all links in an Email or " -"Focus Item. For other Channels, you can make the link trackable by including" -" UTM values in the URL address. When a Contact clicks a link in an Email or " -"Focus Item, Mautic records UTM tags and stores them in the Contact record. " -"You can find the details on the Contact Event History overview. After " -"recording the UTM tags, you can use them as filters in Segments." -msgstr "" - -#: ../../channels/utm_tags.rst:30 1489171680e749fd934df4f2fc033890 -msgid "" -"You can use UTM tags to track Contacts who convert from Dynamic Web Content " -"slots in Emails, and determine the source in Google Analytics or Mautic " -"Reports. You can also use them as columns in a Report by selecting UTM codes" -" as the data source." -msgstr "" - -#: ../../channels/utm_tags.rst:32 11691f41a06344e3aa4cced4f9a72f69 -msgid "The following table lists the Google Analytics UTM tags:" -msgstr "" - -#: ../../channels/utm_tags.rst:34 90cc9b7258cc45db98bf3c7f6083a175 -msgid "Title" -msgstr "" - -#: ../../channels/utm_tags.rst:39 f8994f8850244ff788e977950bf586a1 -msgid "Description" -msgstr "" - -#: ../../channels/utm_tags.rst:40 d6eb7b09c5b54ce8b1cc7a519e720ea5 -msgid "Campaign Source" -msgstr "" - -#: ../../channels/utm_tags.rst:43 13c6de7cf2ea484899768a255018a6ff -msgid "" -"The referring source of the web activity. It indicates the social network, " -"search engine, newsletter name, or any other specific source driving the " -"traffic." -msgstr "" - -#: ../../channels/utm_tags.rst:42 102bc06a290f440b8927bf7801b98b97 -msgid "Examples: facebook, twitter, blog, newsletters" -msgstr "" - -#: ../../channels/utm_tags.rst:43 7f627e8847fe4379b447a134abe21aca -msgid "UTM code: utm_source" -msgstr "" - -#: ../../channels/utm_tags.rst:44 4c7d007f756b49d2842fb4f4f54e1884 -msgid "Sample code: utm_source=facebook" -msgstr "" - -#: ../../channels/utm_tags.rst:45 0d556235f2d5427898ca43c4634bdeab -msgid "Campaign Medium" -msgstr "" - -#: ../../channels/utm_tags.rst:48 7b6e52e97b0e417bb82be4be7b68dc4b -msgid "UTM tags - Mautic Documentation" -msgstr "" - -#: ../../channels/utm_tags.rst:47 9bb2dcb804844cc6a4cb5dcbf1c052c9 -msgid "Examples: cpc, organic_social" -msgstr "" - -#: ../../channels/utm_tags.rst:48 49ed374219694cf088e402ccbc9325e8 -msgid "UTM code: utm_medium" -msgstr "" - -#: ../../channels/utm_tags.rst:49 7706fc7384294945a22d326dfda86878 -msgid "Sample code: utm_medium=paid_social" -msgstr "" - -#: ../../channels/utm_tags.rst:50 1241b75b5c614f45838d4f435195e671 -msgid "Campaign Name" -msgstr "" - -#: ../../channels/utm_tags.rst:53 c76472250bad4240ae5395f7af102160 -msgid "The specific promotion or Campaign title that you want to track." -msgstr "" - -#: ../../channels/utm_tags.rst:52 18f06ab4e5bc4a51816555ee7106885b -msgid "Examples: summer_sale, free_trial" -msgstr "" - -#: ../../channels/utm_tags.rst:53 76cc7795dd6a4282912396934835f1fd -msgid "UTM code: utm_campaign" -msgstr "" - -#: ../../channels/utm_tags.rst:54 940a04896bf74877ba6e1dfd483fc362 -msgid "Sample code: utm_campaign=summer_sale" -msgstr "" - -#: ../../channels/utm_tags.rst:55 9d7ef1e49e80464eb6a473f627876ce2 -msgid "Campaign Content" -msgstr "" - -#: ../../channels/utm_tags.rst:56 79fabbbe43d44227b9329f59a79df5bc -msgid "" -"The Assets within the messages. This non-configurable value auto-populates " -"with the content Asset identifier associated with the specific Asset." -msgstr "" - -#: ../../channels/utm_tags.rst:57 956cfc5bc30341f8be264d926af3f97d -msgid "Campaign Term" -msgstr "" - -#: ../../channels/utm_tags.rst:58 45a6ed115c26471e818d628c04c505f2 -msgid "" -"The keyword to search a Campaign. This non-configurable value auto-populates" -" within the link text and tracks links within the messages." -msgstr "" - -#: ../../channels/utm_tags.rst:61 ce4471e44eaa4250a1411a890238b3e7 -msgid "" -"You don't need to fill all the options. You can use one, or a few, or all of" -" them, as required." -msgstr "" - -#: ../../channels/utm_tags.rst:66 501a6ec4255c4e5e99509f1c645fd02d -msgid "Using UTM tags in Emails" -msgstr "" - -#: ../../channels/utm_tags.rst:70 3f683b9243f04825a4e46a8380a290f6 -msgid "" -"Mautic supports UTM tagging in Emails. Mautic can automatically append UTM " -"tags to all links in an Email by entering the appropriate Campaign values in" -" the fields provided." -msgstr "" - -#: ../../channels/utm_tags.rst:72 dbf359fb437c46fd890035770cdadf51 -msgid "In Mautic, click Channels > Emails." -msgstr "" - -#: ../../channels/utm_tags.rst:73 71febebd63d54ff3889fef73c6bf0006 -msgid "" -"Create a new Email or edit an existing Email. If you choose to edit an " -"existing Email, click the Email and then click Edit." -msgstr "" - -#: ../../channels/utm_tags.rst:74 ../../channels/utm_tags.rst:90 -#: da8066bce6d044b4be69c2a490ab38ca c0a54875e3e4450c9d9b839128122404 -msgid "Locate the Google Analytics UTM tags section on the bottom right." -msgstr "" - -#: ../../channels/utm_tags.rst:75 ../../channels/utm_tags.rst:91 -#: 1c1b71caf9514a4bbe9f973164d98bad 8f39b1ca9821422b96050b741edd5b0e -msgid "Enter the appropriate information in the fields." -msgstr "" - -#: ../../channels/utm_tags.rst:76 ../../channels/utm_tags.rst:92 -#: 280d3f1877cd471b8a4608f8f7c0079b 0890a8e91fff404da913ba1eacbefad1 -msgid "Click Apply." -msgstr "" - -#: ../../channels/utm_tags.rst:79 2b81061a97e446dc89d49baa2a9c7013 -msgid "When adding links in Emails, use the edit link icon in the builder." -msgstr "" - -#: ../../channels/utm_tags.rst:80 3855b3420bd14b8a9bb068a98a70140b -msgid "When adding links in Code Mode, use the tag." -msgstr "" - -#: ../../channels/utm_tags.rst:81 c5d0929ce3974f819a1a70a364c035c7 -msgid "" -"All links must include a trailing slash. Otherwise, UTM codes aren't " -"appended." -msgstr "" - -#: ../../channels/utm_tags.rst:84 f6d86847a7dc400aa616cfe6e1554979 -msgid "Using UTM tags in Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:86 02c7cad53dc4455ebe84ea285489632d -msgid "" -"Mautic supports UTM tagging in :doc:`/channels/focus_items`. Mautic can " -"automatically append UTM tags to all links in a Focus Item by entering the " -"appropriate values in the field provided." -msgstr "" - -#: ../../channels/utm_tags.rst:88 acc69c077c6340fda9a1fa408c4ef624 -msgid "Click Channels > Focus Items" -msgstr "" - -#: ../../channels/utm_tags.rst:89 a6ba8e2f7e6a41a7867f805105ae61b7 -msgid "Create a new focus item or open an existing one." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/channels/web_notifications.po b/docs/locale/zh_TW/LC_MESSAGES/channels/web_notifications.po deleted file mode 100644 index c46cc9ad..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/channels/web_notifications.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../channels/web_notifications.rst:2 74fff5c296084edb835a0c81c3ca3344 -msgid "Web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:4 66b0c9513965473b9950a7b8c54e9af8 -msgid "" -"Web Notifications can be an extremely powerful tool for the marketer. Mautic" -" integrated with :xref:`OneSignal` which allows you to push information to a" -" Contact as they browse through web resources (Mautic Landing Pages, or with" -" some configuration (see :xref:`OneSignal web push`), on your own website), " -"giving you one more Channel that you can use to build a relationship with " -"them." -msgstr "" - -#: ../../channels/web_notifications.rst:6 15bcd7ec28bb4620a33739aba2da2ff8 -msgid "" -"Web notifications in Mautic use OneSignal by default. Using your own " -"OneSignal account, you can now push a notification to your Contacts's " -"browser - with their permission. Enable the OneSignal Plugin in Mautic's " -"Configuration to see Web Notifications listed under Channels in the menu." -msgstr "" - -#: ../../channels/web_notifications.rst:8 8ee9aaff91444085a210b454eb2d98dc -msgid "" -"For more information see the OneSignal :xref:`OneSignal web push quickstart`" -" documentation." -msgstr "" - -#: ../../channels/web_notifications.rst:11 43e2e47ae0a14c16b9c91ae9d456361b -msgid "Setup web notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:14 a1cc310a10084c6fa402a8d9fe2b15ee -msgid "Configuration" -msgstr "" - -#: ../../channels/web_notifications.rst:16 1581b9ad2e5a44ea8d69e8c9861a9af9 -msgid "Create a OneSignal account and once logged in, create an App" -msgstr "" - -#: ../../channels/web_notifications.rst:18 341b293e6172443dbd25f9a9b9282451 -msgid "Setup App Website Push Platforms in your OneSignal App" -msgstr "" - -#: ../../channels/web_notifications.rst:0 aa1e100a257748ec9d98338d16ffe4f8 -msgid "Screenshot showing creating push platforms on OneSignal." -msgstr "" - -#: ../../channels/web_notifications.rst:24 500e044b2faf4581b563d27941dad034 -msgid "Select Typical Site and fill out the required fields." -msgstr "" - -#: ../../channels/web_notifications.rst:28 e4db18ca26904a6a8a93e20942bf9c29 -msgid "" -"Download the SDK files from the next screen, and upload them to the root of " -"your Mautic installation - this must be accessible at " -"`https://mautic.example.com/OneSignalSDKWorker.js`." -msgstr "" - -#: ../../channels/web_notifications.rst:32 e60ad7541ed248f5ad98c99936ef9fe1 -msgid "Get the keys from OneSignal under the Settings > Keys & IDs tab." -msgstr "" - -#: ../../channels/web_notifications.rst:33 a51878a8a7ed44da89b13439823b2699 -msgid "" -"Enable the features you wish to use - for example, whether to enable " -"notifications on mobile apps, Landing Pages, tracked resources on your " -"website, and whether to show a welcome notification after they subscribe. " -"You can also specify a subdomain name, and if you're using iOS and Android " -"notifications you can also enable these options - see " -":doc:`/channels/push_notifications`." -msgstr "" - -#: ../../channels/web_notifications.rst:36 a1b1766cc20e45ff9daefcfb8bf332f6 -msgid "Sending notifications" -msgstr "" - -#: ../../channels/web_notifications.rst:37 bd89db2a366949258239d92d57bbf14e -msgid "There are two ways to send website notifications to the Contact:" -msgstr "" - -#: ../../channels/web_notifications.rst:39 98eaeb71c7f74e96975d1a8da196a86b -msgid "Send with a Campaign Action" -msgstr "" - -#: ../../channels/web_notifications.rst:40 46242d7c43304bc78dcbb3cd2bba58c9 -msgid "Send via a :doc:`/channels/marketing_messages`" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/companies/companies_overview.po b/docs/locale/zh_TW/LC_MESSAGES/companies/companies_overview.po deleted file mode 100644 index c9d300ed..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/companies/companies_overview.po +++ /dev/null @@ -1,286 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../companies/companies_overview.rst:3 8fcd61f13f7748c29b59a40ac07226bc -msgid "Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:5 5195c8db303f4a799457b15ea701b7ea -msgid "" -"Companies are a way to group Contacts based on association with " -"organizations." -msgstr "" - -#: ../../companies/companies_overview.rstNone e2050c560254424ab53ae550cd7b0967 -msgid "Mautic Company Overview" -msgstr "" - -#: ../../companies/companies_overview.rst:12 651a3b35794846c08bce38b8a714f925 -msgid "Engagements/Points chart" -msgstr "" - -#: ../../companies/companies_overview.rst:14 70d7470d7d4c4e438d1cb2330fde7830 -msgid "" -"Engagements shown on the chart include any tracked action the Contacts made." -" Some examples might include page hits, Form submissions, Email opens and so" -" on. The engagements line chart displays how active the Contacts of the " -"Company were in the past 6 months. The chart displays also the sum of Points" -" the Contacts received." -msgstr "" - -#: ../../companies/companies_overview.rst:19 c09362847a244dd0967a4f0dbf5e5fea -msgid "List of Contacts assigned" -msgstr "" - -#: ../../companies/companies_overview.rst:23 86e75b0905e3405b8f8f0090a5c823c1 -msgid "" -"You can find a table with the list of the assigned Contacts displaying the " -"date of their last activity, preceding the information of the Company which " -"includes the Company name, address, and all the custom Company fields, and " -"the engagement chart. This is good way to have a view of the recent activity" -" of the Contacts you know in this Company." -msgstr "" - -#: ../../companies/companies_overview.rst:26 fcfa6dfa9f96401a98bf69e0d281459e -msgid "Company duplicates" -msgstr "" - -#: ../../companies/companies_overview.rst:27 47686df65fba4f6691fdaaae110d9d49 -msgid "" -"The Company name field is a unique identifier by default. You can choose any" -" other Company field as unique identifier in the **custom fields** section." -msgstr "" - -#: ../../companies/companies_overview.rst:29 1996fbf922564fb9a937c4a703807afc -msgid "" -"In *Configuration > Company Settings* you can choose the operator used when " -"merging Companies with multiple identifiers - either **AND** or **OR**." -msgstr "" - -#: ../../companies/companies_overview.rstNone c81dbbeea0ba485bb4467561747e429b -msgid "Setup operator for find duplications algorithm" -msgstr "" - -#: ../../companies/companies_overview.rst:35 ad63ad5dec844223ae48cc5e35b4cf1b -msgid "" -"These settings allow Mautic to find and merge duplicate Companies during " -"the import, using the Integrations Framework and in other parts of Mautic." -msgstr "" - -#: ../../companies/companies_overview.rst:38 4dc978b965ab4b6b91417401dc3868fb -msgid "Company actions" -msgstr "" - -#: ../../companies/companies_overview.rst:43 f9fd958639374e18b7c81629c94514f0 -msgid "Merging Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:47 574cf973fa224fe8939da82e2f3ab5c3 -msgid "" -"When editing a Company, you can merge this Company into another existing " -"Company by using the **Merge** button." -msgstr "" - -#: ../../companies/companies_overview.rst:49 99866adc4d534c1bb716d090adb2bf8f -msgid "" -"Search for the Company you wish to merge into, then click to start the " -"merge. Contacts associated with the merged Companies now become associated " -"with the remaining Company." -msgstr "" - -#: ../../companies/companies_overview.rst:51 e57005220880451e9f33f8470729e8bb -msgid "" -"After completion of the merge process, Mautic redirects you to the remaining" -" Company, as the old Company no longer exists." -msgstr "" - -#: ../../companies/companies_overview.rst:56 6cd9aaf4246f41e089b2a37754d65f66 -msgid "Company Custom Fields" -msgstr "" - -#: ../../companies/companies_overview.rst:60 f641c89266c646ecabba0bedeb5c658c -msgid "" -"By default, a set of fields exist for Companies, but you can customize these" -" fields to meet your needs." -msgstr "" - -#: ../../companies/companies_overview.rst:62 4da494c22db44edb90ee08a7e9b94eac -msgid "Go to **Custom Fields** and create a new field" -msgstr "" - -#: ../../companies/companies_overview.rst:64 72922e4e42bb4d4fa27db044897943da -msgid "Change the dropdown select box from Contact to Company objects" -msgstr "" - -#: ../../companies/companies_overview.rst:66 deed0a7dfe5f4fc2a0afddc9151d6601 -msgid "Save the custom field" -msgstr "" - -#: ../../companies/companies_overview.rst:71 9b78e66f3455436483eee1318b5d42fe -msgid "Company Segments" -msgstr "" - -#: ../../companies/companies_overview.rst:75 b1cd3a9efd8942f3b18f6ce57ddae27f -msgid "" -"You can create a Segment based on a Company record. Select any Company field" -" to filter with and the matching criteria for it, and Mautic lists any " -"Contacts that match the selected fields in the Segment." -msgstr "" - -#: ../../companies/companies_overview.rst:80 09b040a322db47308a967b9f37617caa -msgid "Identifying Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:84 defb28a2b2494f6da8181b29cb05d35e -msgid "" -"Mautic identifies Companies strictly through a matching criteria based on " -"**Company Name**, **City**, **Country or State**. If a city or a country " -"isn't delivered as an identifying fields to identify a Contact, the Company " -"won't match." -msgstr "" - -#: ../../companies/companies_overview.rst:89 0f36e2e081c74fb6b3cf5575ee21fc79 -msgid "Company actions in Campaigns" -msgstr "" - -#: ../../companies/companies_overview.rst:93 c7aac081230c44a4a556fc16ea41ab52 -msgid "" -"It's possible to add a Contact to a new Company based on a Campaign action." -msgstr "" - -#: ../../companies/companies_overview.rst:98 0bf9fcbeb157432c82b98b1d0c9e4726 -msgid "Creating and managing Companies" -msgstr "" - -#: ../../companies/companies_overview.rst:102 ebbeac4b247847f89615830f9b479f6d -msgid "" -"To create or manage Companies, go to the Companies menu identified by the " -"building icon in the left hand navigation. In this area you can create, " -"edit, or delete Companies." -msgstr "" - -#: ../../companies/companies_overview.rst:107 b6cd3b7f1c5442d69e7891c5f4a2bc12 -msgid "Assigning Companies to Contacts" -msgstr "" - -#: ../../companies/companies_overview.rst:111 67ccb346bca14ddcacba596a16085b62 -msgid "" -"There are different ways to assign a Company to a Contact as explained " -"below:" -msgstr "" - -#: ../../companies/companies_overview.rst:114 7c4f6a66dfeb4a589a21e1ea06b97407 -msgid "Contact profile" -msgstr "" - -#: ../../companies/companies_overview.rst:116 5e6ae8f6809945be8db03d5fb5ab8910 -msgid "" -"You can assign a Contact to Companies in the Contact's profile, while " -"creating or editing an existing Contact. Mautic considers the latest Company" -" assigned as the primary Company for the Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:119 e3ff12a6c6754a6ea6e6ed6c4fe22d02 -msgid "Contacts list view" -msgstr "" - -#: ../../companies/companies_overview.rst:121 16f50328e3414e8eaaafb92570341ed9 -msgid "" -"You can batch assign Companies to selected Contacts in the Contact's list " -"view." -msgstr "" - -#: ../../companies/companies_overview.rst:126 10f9392a6b9e4a1a9cc224c5e389b2ac -msgid "Via a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:130 04e7474f90a942fabc1650eedfaa9599 -msgid "" -"You can assign a Company to identify Contacts through a Campaign by " -"selecting the **Assign Contact to Company** action." -msgstr "" - -#: ../../companies/companies_overview.rst:135 b29e2242b1034811aa9e4d1bb94f8718 -msgid "Through a Form" -msgstr "" - -#: ../../companies/companies_overview.rst:139 e94bb455c7b149e6857a3035c7c539d1 -msgid "" -"When identifying a Contact through a Form, you can also associate an " -"existing Company or create a new one if:" -msgstr "" - -#: ../../companies/companies_overview.rst:141 7939bcbc1b8e43dea2e89f4986b4d954 -msgid "" -"The Form includes Company name as a Form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:142 9b70714130804f4882f1236e95a26e82 -msgid "" -"The Form includes City as a Form field - mandatory for Company " -"matching/creation)," -msgstr "" - -#: ../../companies/companies_overview.rst:143 4bab1cd05e7543499a0ef1ec528115b8 -msgid "" -"The Form includes Country as a form field - mandatory for Company " -"matching/creation," -msgstr "" - -#: ../../companies/companies_overview.rst:144 867992821ac34ca0a665487b4b028a1c -msgid "" -"The Form includes State as a form field - optional for Company " -"matching/creation." -msgstr "" - -#: ../../companies/companies_overview.rst:147 0aa0dca9bfe54b57adee56dbcd9fec37 -msgid "Company scoring" -msgstr "" - -#: ../../companies/companies_overview.rst:149 c461c0fdea4747afa5db43677ca6789d -msgid "" -"It's possible to change the Company score through a Campaign action or a " -"Form action. When using these actions, it's necessary to identify the " -"Contact first, and then alter the score of the Companies assigned to that " -"Contact." -msgstr "" - -#: ../../companies/companies_overview.rst:151 ac75449fb3774d1ead700e8a54a3f289 -msgid "" -"Select the **Change Company score** action in either a Form or a Campaign" -msgstr "" - -#: ../../companies/companies_overview.rst:152 7587fd7269e9445f974686b4063b2684 -msgid "" -"Once submitted or triggered, Mautic identifies Companies in the Campaign or " -"Form to change their score." -msgstr "" - -#: ../../companies/companies_overview.rst:157 b13a6f039b71447d9d433173319a5a17 -msgid "Setting the primary Company" -msgstr "" - -#: ../../companies/companies_overview.rst:161 f6dc26cbb081496a88b38cb6ed630f9c -msgid "You can set the primary Company through the Contact details interface." -msgstr "" - -#: ../../companies/companies_overview.rstNone bdea2e06563b45c1bf7de743a70129c2 -msgid "Screenshot showing setting the primary Company" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/components/assets.po b/docs/locale/zh_TW/LC_MESSAGES/components/assets.po deleted file mode 100644 index 0fec5dea..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/components/assets.po +++ /dev/null @@ -1,252 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/assets.rst:2 25a2e73b85b14c4cafb3173b8b869cd1 -msgid "Assets" -msgstr "" - -#: ../../components/assets.rst:4 2c111c9d1fda4d6198f8e89c542411d8 -msgid "" -"Assets are pieces of content you want to make available for your Contacts to" -" access. You want to track and analyse who is viewing or downloading your " -"Assets. You also may want to personalize the Contact's journey based on what" -" Assets they interacted with. You may also do scoring based on interaction " -"with Assets." -msgstr "" - -#: ../../components/assets.rst:9 4049d15f37ac4bd0a25f5c4fc0835d96 -msgid "Managing Assets" -msgstr "" - -#: ../../components/assets.rst:12 8208e45088c94c1dba822a19f81329d2 -msgid "Asset Categories" -msgstr "" - -#: ../../components/assets.rst:16 ef2771716bdb4737bf2ea7bb746fd23e -msgid "" -"Mautic allows you to organize Assets into Categories, which helps you easily" -" locate resources. To create a new Category, review the " -":doc:`/categories/categories-overview` documentation." -msgstr "" - -#: ../../components/assets.rst:21 87510413f17f4ed2974fed215f6815aa -msgid "Working with Assets" -msgstr "" - -#: ../../components/assets.rst:25 83ea75311a6d41e4a6af9e4c1316fb1c -msgid "" -"Before creating an Asset, first establish and publish any Categories " -"required. It's not possible to assign Assets to unpublished Categories. If " -"you wish to use an Integration such as the Amazon S3 Plugin to host your " -"files, set this up before creating an Asset." -msgstr "" - -#: ../../components/assets.rst:30 6c7057bb66a04510817f45d6d65bef0e -msgid "Creating a new Asset" -msgstr "" - -#: ../../components/assets.rst:34 4f82056558ef499ba2508c52a3d15f26 -msgid "" -"Navigate to Components > Assets. Mautic lists any Assets you have previously" -" created. Click New to begin creating an Asset." -msgstr "" - -#: ../../components/assets.rst:36 af74a9e62ac84ed3985b735930c4f611 -msgid "" -"You create Assets by uploading local resources on your computer, or by " -"locating the Asset from a remote storage host such as Amazon S3. There are " -"limitations by size due to the settings of your server - any such " -"restriction may display as a warning message in the file upload section." -msgstr "" - -#: ../../components/assets.rst:41 0d7a9c7c7b5f4b4bade2db2645456dd4 -msgid "Uploading an Asset" -msgstr "" - -#: ../../components/assets.rst:45 60a0fd1505444c1d842988bfc2c96c79 -msgid "" -"To upload an Asset, either drag the file into the box, or click in the box " -"to open a file upload window. On selection of the file, it's automatically " -"uploaded and appears in the boxed area." -msgstr "" - -#: ../../components/assets.rst:47 5f737b3e16d84e14a90d3bc81a059630 -msgid "By default Mautic allows the following file types:" -msgstr "" - -#: ../../components/assets.rst:53 88b2553065ae4dbeabbe59f12f1888b6 -msgid "" -"If you need to add extra file types, configure the maximum size of upload or" -" the Assets directory, navigate to Configuration > Asset Settings." -msgstr "" - -#: ../../components/assets.rstNone 2a566fc778a24cde931a160ce5242696 -msgid "Screenshot of Asset settings" -msgstr "" - -#: ../../components/assets.rst:59 fe30df2570e24972b48b04e958271321 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/assets.rst:61 43bfec3db4f24cc4a306a8d426a6acfc -msgid "**Title** - the title for the Asset" -msgstr "" - -#: ../../components/assets.rst:62 149233e84e6c4c16b82b2f7d421e4753 -msgid "" -"**Alias** - used to create the slug on the download URL. Created from the " -"title automatically if not provided." -msgstr "" - -#: ../../components/assets.rst:63 6da4b7cbd3cd47bf99db87bc50500cc7 -msgid "" -"**Description** - an internally used description to inform other Mautic " -"Users what the Asset is and/or where it's used." -msgstr "" - -#: ../../components/assets.rst:64 d78f478859f341809c964085e57390c0 -msgid "" -"**Category** - used to organize resources - see " -":doc:`/categories/categories-overview` for more information" -msgstr "" - -#: ../../components/assets.rst:65 2c70f1d3555a4780b86ed4d9a33e8204 -msgid "" -"**Language** - the language of this Asset - can be helpful in multilingual " -"marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/assets.rst:66 c2173a8338ab4dc096e77cbcc4e25d21 -msgid "" -"**Published** - Whether the Asset is available for use - published - or not " -"available - unpublished" -msgstr "" - -#: ../../components/assets.rst:70 524f997f0f3e4ba7ae8fd0894b26113c -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Asset is available" -msgstr "" - -#: ../../components/assets.rst:72 1eb1f3ed2ab94a76b75aaa193fc25e45 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Asset ceases to be available" -msgstr "" - -#: ../../components/assets.rst:76 a9cf6b0906d24f66b70b03cbb150b009 -msgid "" -"**Block search engines from indexing this file** - If you don't want to " -"index files like PDF, DOCx and so forth, setting this switch to Yes sends " -"the X-Robots-Tag no-index http header. If set to No, the header isn't sent " -"and your files could become indexed by search engines." -msgstr "" - -#: ../../components/assets.rst:78 7b499240cf2d4fcb82b3d6c369fb6121 -msgid "" -"Depending on the type of file uploaded, a preview may display after the " -"upload completes." -msgstr "" - -#: ../../components/assets.rstNone 4a165c382b8c45b68e2a64cff645990e -msgid "Screenshot of create new Asset interface" -msgstr "" - -#: ../../components/assets.rst:87 840d3e0880bc486ca890a9c8f2520345 -msgid "Using remote Assets" -msgstr "" - -#: ../../components/assets.rst:91 48fac9a26b7b4f2ba30962c611d63e99 -msgid "" -"Instead of uploading a file from your computer, you can either provide a " -"link to a file on a cloud storage provider or browse your integrated cloud " -"storage provider - for example an Amazon S3 bucket - by selecting the Remote" -" tab, rather than Local." -msgstr "" - -#: ../../components/assets.rst:96 308479b972124c858f7bc7b2a28ae694 -msgid "Viewing an Asset" -msgstr "" - -#: ../../components/assets.rst:100 072a5d87fc874ce98dcd7e1cc64b6c7e -msgid "" -"Once you've uploaded an Asset, you'll want to make it available for your " -"Contacts to access it. Using the Download URL from the Asset section in " -"Mautic, you can track which Contacts are downloading or viewing the Assets." -msgstr "" - -#: ../../components/assets.rst:102 a4122476267e44da883d06af83531e36 -msgid "" -"Copy and paste the link into your website, on a landing page, or as a link " -"in an Email." -msgstr "" - -#: ../../components/assets.rst:105 17d8f6e877fa4d8f8c0d0e79c72b8f72 -msgid "" -"In a Mautic Email or Landing Page, append ``?stream=1`` to the end of the " -"URL to open the Asset in a new tab." -msgstr "" - -#: ../../components/assets.rst:107 b91fe6d974844c5490a6b57ba0aeab29 -msgid "" -"Whether the Asset downloads or opens in a new tab depends on the Contact's " -"browser settings. To gate an Asset by requiring them to submit some " -"information before downloading, you may have a Form submit action to " -"download an Asset." -msgstr "" - -#: ../../components/assets.rst:109 207c38d5b9184d4cb6d67cc4b486ecf4 -msgid "" -"To ensure that Contacts are providing you with valid Email addresses for " -"high-value Assets, attach the Asset to an Email and use the send Email Form " -"submit action rather than instantly downloading the Asset." -msgstr "" - -#: ../../components/assets.rst:114 9d457c4170ce42d2890a87c10c80888c -msgid "Editing an Asset" -msgstr "" - -#: ../../components/assets.rst:118 3350a801b8ed443e9fb54056b091bbbf -msgid "" -"You can edit an Asset by clicking on the 'edit' button while viewing the " -"Asset, or by selecting the arrow next to the checkbox for the Asset, and " -"selecting 'edit'. The edit screens are the same as the view screens,with the" -" saved content already populated in the fields." -msgstr "" - -#: ../../components/assets.rst:123 5b48c14edda141fcbe460d09fac1f951 -msgid "Deleting an Asset" -msgstr "" - -#: ../../components/assets.rst:127 422d1d4337d7484f99508a52adc06e8b -msgid "" -"It's possible to delete an Asset by clicking on the 'delete' button while " -"viewing the Asset, or by selecting the arrow next to the checkbox for the " -"Asset, and selecting 'delete'. Mautic displays a confirmation screen, " -"prompting confirmation that you wish to delete the Asset." -msgstr "" - -#: ../../components/assets.rst:130 82e8340b78ae47c4805ebb03b5df0602 -msgid "" -"Once deleted, you can't retrieve an Asset, and statistics relating to the " -"number of downloads for that Asset are no longer be available. Contact " -"Points accumulated as a result of accessing the resource remain. It's " -"recommended where possible to unpublish Assets which are no longer in use - " -"in future there may be an archive feature." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/components/dynamic_web_content.po b/docs/locale/zh_TW/LC_MESSAGES/components/dynamic_web_content.po deleted file mode 100644 index 01e376a9..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/components/dynamic_web_content.po +++ /dev/null @@ -1,467 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/dynamic_web_content.rst:4 83713dc86d894cd29f6dd18fee8171ce -msgid "Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:8 50b2d82bbaf241c6810b7d8ba1560ef8 -msgid "" -"Dynamic Web Content is one of several methods Mautic uses to personalize the" -" web experience for Contacts. Marketers can display different content to " -"different people in specific areas of a webpage. Mautic Users may want to " -"personalize content based on data collected about the website visitor. Even " -"anonymous Contacts may see Dynamic Content, if you've collected any " -"information about them - such as location data." -msgstr "" - -#: ../../components/dynamic_web_content.rst:11 -#: 3475d04061094ae8bfeb860c879fc4aa -msgid "Preparation" -msgstr "" - -#: ../../components/dynamic_web_content.rst:13 -#: a82cd95cc7784697b3dcce8dbe7aa148 -msgid "Before you consider using Dynamic Web Content, consider:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:15 -#: 3ea127bb6a3746729ff8ef3cf5b55adb -msgid "where on your website would you include personalized content?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:16 -#: 45e4bdfe5fca45ee81b8d3729ef6a516 -msgid "What audience/s do you plan to personalize content for?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:17 -#: 6dbcf4f3a5d743e4929b404c6bf3300c -msgid "" -"Do you collect the information required to accurately filter your Contacts " -"in this way?" -msgstr "" - -#: ../../components/dynamic_web_content.rst:21 -#: b1be66a3fc6040daba5adb2741ec89af -msgid "Website configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:23 -#: 541eea5068144d2db90d044aad65b129 -msgid "" -"Once you've decided where on your website to display the content, you must " -"create an area to add the content. Mautic is platform-agnostic - you can add" -" slots into any website you have created. To do this, create an HTML slot to" -" display the Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:25 -#: d36cbfa244a8494c93b7e63cf799ef55 -msgid "" -"Change ``myslot`` in ``data-param-slot-name=\"myslot\"`` to the Requested " -"Slot Name of your Dynamic Web Content item:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:33 -#: 43cddde114d04a948e286e84032f4452 -msgid "" -"You can add your own default content between the ``
`` tags to ensure " -"that content displays when the filters aren't matching - for example with " -"new anonymous visitors or a Contact that doesn't match the criteria you have" -" specified." -msgstr "" - -#: ../../components/dynamic_web_content.rst:35 -#: cfaa37349ad74f658b4ce06cfc8f9816 -msgid "" -"Content Management System Plugins for Mautic also have specific ways to " -"embed the content, for example:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:37 -#: 3d2bd63d56384ed8ad5cf56a1cf45fba -msgid "" -"**Joomla** - ``{mautic type=\"content\" slot=\"slotname\"} Insert default " -"content {/mautic}``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:38 -#: e041dff5e45147e190c7cedb5662eed8 -msgid "" -"**WordPress** - ``[mautic type=\"content\" slot=\"slotname\"] Insert default" -" content [/mautic]``" -msgstr "" - -#: ../../components/dynamic_web_content.rst:41 -#: ad579ad909a2442cbbb6de2f15752c4b -msgid "Mautic configuration" -msgstr "" - -#: ../../components/dynamic_web_content.rst:44 -#: 048c936625a04856b205fddc5fa7b31d -msgid "" -"It's important to ensure that you configure your CORS settings correctly " -"when using Dynamic Web Content - if this isn't set up your content won't " -"display. Read more in :ref:`CORS Settings`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:49 -#: 2b4c76e41d034a259b974f8f946a8003 -msgid "Creating Dynamic Web Content slots" -msgstr "" - -#: ../../components/dynamic_web_content.rst:53 -#: 2fc95c2f75ff4eaf8b813bbbad705567 -msgid "" -"Mautic provides both Campaign-based and filter-based Dynamic Web Content. To" -" create either type:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:55 -#: b1534884398d4c379012bfd60278b7e9 -msgid "Navigate to the Components > Dynamic Content section" -msgstr "" - -#: ../../components/dynamic_web_content.rst:56 -#: 67c544761c384fd085fa28f3e790c47c -msgid "Click New to create a new slot" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: 9f8837fcb7364e8da71b6c601c6b1e1a -msgid "Create a new Dynamic Web Content slot" -msgstr "" - -#: ../../components/dynamic_web_content.rst:62 -#: 185b7238694143d6b01d7572e890a316 -msgid "The following values are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:64 -#: 7c2f6699f32d4e118b9917196168e549 -msgid "" -"**Internal name** - This is how the slot displays in your list of Dynamic " -"Web Content slots. You should include information on what you're " -"personalizing - for example, country - and the content in the slot - for " -"example, United States. If you're creating a personalized slot for people in" -" the United States, you can name the slot Country - United States. If you " -"plan to have more than one personalized content slot for the same audience " -"across your website, include the page title or other identifying information" -" for the particular slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:68 -#: 8b15b9cd2efa4a69bee15515f2af439a -msgid "" -"**Content** - Use the WYSIWYG editor to create the Dynamic Web Content slot." -" You may include images and videos. If you prefer HTML, click the `` " -"Source`` icon in the toolbar to switch to the code view. Mautic's Dynamic " -"Web Content supports tokens in the same way as Landing Pages or Emails. To " -"add a token, start typing with the ``{`` character and available tokens are " -"displayed. These include:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:70 -#: ebf22bc033e34d428b058e0b65bd82d4 -msgid "Contact field: {contactfield=fieldalias}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:71 -#: 06e14851685b45d5975cce67a38e45ab -msgid "Landing page link: {pagelink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:72 -#: 237081749bff436c8c393f2c9b6cd97c -msgid "Asset link: {assetlink=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:73 -#: a4187516df1947b19acde39d5c1decf7 -msgid "Form: {form=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:74 -#: 36bed3dfb89c40b9b546d2212ab07da2 -msgid "Focus item: {focus=ID#}" -msgstr "" - -#: ../../components/dynamic_web_content.rst:78 -#: 5d4ea21ddefd42e6a32cd7756f87fe19 -msgid "" -"**Category** - Assign a Category to help you organize your Dynamic Web " -"Content items. See :doc:`/categories/categories-overview` for more " -"information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:80 -#: 7859de787a5f48fd950273d6cb53e745 -msgid "" -"**Language** - the language of this Dynamic Web Content - can be helpful in " -"multilingual marketing Campaigns and for reporting purposes" -msgstr "" - -#: ../../components/dynamic_web_content.rst:82 -#: 143c573590d14f8fb00580424a91f95d -msgid "" -"**Is a translation of** - If you're creating a slot in a second language " -"translation - for example to use on a multilingual website - select the " -"original base language Dynamic Web Content item which you're translating. " -"The same slot displays the appropriate language based on the Campaign or " -"filters set, but Mautic shows the translated content if a visitor is viewing" -" the page in a different browser language." -msgstr "" - -#: ../../components/dynamic_web_content.rst:84 -#: 295fa51920c64d3da0d363901ebc3c59 -msgid "" -"**Published** - Whether the Dynamic Web Content item is available for use - " -"published - or not available - unpublished" -msgstr "" - -#: ../../components/dynamic_web_content.rst:86 -#: 29f69bcecb694a45ae5e4d29f925acee -msgid "" -"**Is Campaign based** - if set to Yes, Mautic pushes this Dynamic Web " -"Content to Contacts through a Campaign. When set to No, you can specify " -"filters for visitors to see the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:88 -#: 5dd40520e85742d994ab35520a2e6263 -msgid "" -"**Requested slot name** - shown if using non-Campaign based Dynamic Web " -"Content, this allows you to specify the slot name on your website in which " -"the Contact sees the content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:92 -#: 4540a79475624c67b2fb345eb34282ec -msgid "" -"**Publish at (date/time)** - This allows you to define the date and time at " -"which this Dynamic Web Content item is available for displaying to Contacts" -msgstr "" - -#: ../../components/dynamic_web_content.rst:94 -#: a2f389a660d74d4e9dd882a5b403f639 -msgid "" -"**Unpublish at (date/time)** - This allows you to define the date and time " -"at which this Dynamic Web Content item ceases to be available for displaying" -" to Contacts." -msgstr "" - -#: ../../components/dynamic_web_content.rst:98 -#: a9503f8ba00f4d7cb65d12db51265e2e -msgid "" -"**UTM tags** - Mautic can append UTM tags to any links and Form submissions." -" See :doc:`/channels/utm_tags` for more information." -msgstr "" - -#: ../../components/dynamic_web_content.rst:103 -#: 94c0f74a57554a959affdb12331ec2c4 -msgid "Campaign-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:108 -#: d12b203adbfd42edbdb57ffb420a7e43 -msgid "Creating the request" -msgstr "" - -#: ../../components/dynamic_web_content.rst:110 -#: ae005d2b9b73464b834cf609af5166e5 -msgid "" -"Use a Campaign Decision for ``Request Dynamic Content`` to use Campaign-" -"based dynamic content. The Campaign Decision checks if a Campaign member " -"visits a page where a Dynamic Content slot is. Visitors to a page with a " -"Dynamic Content slot receive the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:112 -#: 23c2de293cba42cb8d9d92b03399fa52 -msgid "The following fields are available:" -msgstr "" - -#: ../../components/dynamic_web_content.rst:114 -#: 0a53d9724c19409596ea2de722a8d560 -msgid "" -"**Name** - the Campaign event. Start the name with something like Req-DWC: " -"so when you're looking at Campaign Reports, you can see the event type." -msgstr "" - -#: ../../components/dynamic_web_content.rst:116 -#: 36bd8713ebbf4185b0830518269fc393 -msgid "" -"**Requested Slot Name** - Mautic checks for the slot name. You can see how " -"many Contacts got to the Campaign event where you're checking if their " -"visits request the slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:118 -#: 08446e3b3baa46f39d7f5c2c43b5de85 -msgid "" -"As an example, these two fields might look like: ``Req-DWC: Country-Header``" -" in the Contact history. The requested slot name is the slot Mautic looks " -"for on the page. If it's on a 3rd-party page, it'll be in the code you use " -"to add the Dynamic Content slot to your page. If it's on a Mautic Landing " -"Page, define the slot name on the Landing Page." -msgstr "" - -#: ../../components/dynamic_web_content.rst:120 -#: c4b6671a13c3455bab8c0044a4252761 -msgid "" -"**Select Default Content** - choose the content which displays to visitors " -"who don't meet the conditions set at the next step of the Campaign. Users " -"may see the default content first, before Mautic pushes the Dynamic Content." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e1f764d7da2549c285f1d55989aae1cb -msgid "Create a new Dynamic Web Content request in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:127 -#: 0e519da6caa24f75ba0d56a30d3ea7ca -msgid "Creating the filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:129 -#: 1c1de02817664427bf4da68d080b54e5 -msgid "" -"Once created, you can add filters on the affirmative path to determine which" -" Contacts see the different variations. This happens with Conditions - read " -"more in :doc:`/campaigns/creating_campaigns`." -msgstr "" - -#: ../../components/dynamic_web_content.rst:131 -#: 513a60be1d5244ef9a97a226827e7eab -msgid "" -"As an example, you might use the condition of ``Country = United States of " -"America`` to filter only people located in the country." -msgstr "" - -#: ../../components/dynamic_web_content.rst:134 -#: 6999ac2862da41e6b7f026dec2582110 -msgid "Pushing the Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:135 -#: bcb4b1a621d1432a9cd98dc3f5c3c782 -msgid "" -"Once the relevant filters are in place, you can add the Campaign action of " -"'Push Dynamic Content' which triggers Mautic to send the relevant content to" -" the Contacts matching the filters." -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: e0a8a0ed3e87420ab1db1df4b35860e7 -msgid "Push Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:141 -#: f709c9106a354f888b4aca8edcbdf7ba -msgid "With all this in place, it might look something like this:" -msgstr "" - -#: ../../components/dynamic_web_content.rstNone -#: c6944203da00414e9a48bb104eb5cefc -msgid "Dynamic Web Content to Contact in a Mautic Campaign" -msgstr "" - -#: ../../components/dynamic_web_content.rst:147 -#: 6bc31fe05f3143ddba05d82720c17c7a -msgid "" -"You may wish to decide on a naming convention for your Campaigns, for " -"example prefixing with ``DWC:`` when you're pushing Dynamic Web Content." -msgstr "" - -#: ../../components/dynamic_web_content.rst:152 -#: ca227651279e441483d4c64f7e276c93 -msgid "Filter-based Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:156 -#: 3849e131dcce4e20b57da4506cbb1df2 -msgid "" -"Filters are often easier to work with and can be more reliable, as they " -"don't rely on the triggering of a Campaign cron job." -msgstr "" - -#: ../../components/dynamic_web_content.rst:159 -#: 976f08d1e002431eb02735256cba770d -msgid "Creating filters" -msgstr "" - -#: ../../components/dynamic_web_content.rst:161 -#: 694105e2196948d69a970a808ae9ab0b -msgid "" -"When creating the Dynamic Web Content item, select No for the 'Is Campaign " -"based' switch which displays the filters tab." -msgstr "" - -#: ../../components/dynamic_web_content.rst:163 -#: 787b3732c1b14029a3d12c8a13088ddc -msgid "" -"Use the filters to configure the criteria that Contacts must meet to see the" -" Dynamic Web Content slot." -msgstr "" - -#: ../../components/dynamic_web_content.rst:165 -#: ca0d98332ef7439598dbf303027fd51a -msgid "" -"Provide the content in the slot within the text editor area. Mautic displays" -" this content when the filters match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:170 -#: 4566babe74cd4ce89787d1e16aecec04 -msgid "Implementing Dynamic Web Content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:175 -#: bbfeed5de5804ce6bf70f7884a1fc61a -msgid "Default content" -msgstr "" - -#: ../../components/dynamic_web_content.rst:177 -#: 7c0a764349ab4078a0ed6ba43a603f4f -msgid "" -"Mautic displays the default content when the visitor doesn't match any of " -"the filter criteria, or the visitor isn't a tracked/identified Contact. It's" -" important to have something in the default content, rather than an empty " -"space." -msgstr "" - -#: ../../components/dynamic_web_content.rst:179 -#: 84ccdebf057c4cc89780616504fb5da4 -msgid "" -"For Campaign-based Dynamic Web Content, you specify the default content when" -" you configure the Request Dynamic Content decision. In filter-based Dynamic" -" Web Content, you create the default content on the page where you are " -"inserting the slot, and Mautic replaces it with the Dynamic Content if the " -"filter match." -msgstr "" - -#: ../../components/dynamic_web_content.rst:182 -#: b688190557734103b1e294ff1d345a7b -msgid "" -"If you're using Focus Items as your Dynamic Web Content and only showing " -"specific Focus Items to specific audiences, you don't need to have any " -"default content, as Focus Items don't physically take up space on your page." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/components/forms.po b/docs/locale/zh_TW/LC_MESSAGES/components/forms.po deleted file mode 100644 index f8f69eba..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/components/forms.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/forms.rst:4 c7d443482a604c81911e942e5290314c -msgid "Forms" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/components/landing_pages.po b/docs/locale/zh_TW/LC_MESSAGES/components/landing_pages.po deleted file mode 100644 index e1cb5045..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/components/landing_pages.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../components/landing_pages.rst:4 88f333e245ea4bf5962849e2c56864a9 -msgid "Landing Pages" -msgstr "" - -#: ../../components/landing_pages.rst:7 b2f1cee08969425082dd1b47491c86f6 -msgid "Customizing the Preference Center" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/configuration/settings.po b/docs/locale/zh_TW/LC_MESSAGES/configuration/settings.po deleted file mode 100644 index 07ca3131..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/configuration/settings.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../configuration/settings.rst:4 d510d34ba93945e3a45996e145b6cbed -msgid "Mautic Configuration Settings" -msgstr "" - -#: ../../configuration/settings.rst:9 7b989865e9c0479c8a04a37883f40038 -msgid "CORS Settings" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/contacts/manage_contacts.po b/docs/locale/zh_TW/LC_MESSAGES/contacts/manage_contacts.po deleted file mode 100644 index 16e20877..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/contacts/manage_contacts.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_contacts.rst:4 958df1c79e3a4730ab3a0cff25cab7cb -msgid "Managing Contacts" -msgstr "" - -#: ../../contacts/manage_contacts.rst:9 d5d1e496324d45c4bb4aef412b2e6dc6 -msgid "Contact tracking" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/contacts/manage_segments.po b/docs/locale/zh_TW/LC_MESSAGES/contacts/manage_segments.po deleted file mode 100644 index 58936908..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/contacts/manage_segments.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contacts/manage_segments.rst:4 229716827dad47df9b7732082eaa93b7 -msgid "Managing Segments" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/contributing/contributing.po b/docs/locale/zh_TW/LC_MESSAGES/contributing/contributing.po deleted file mode 100644 index 38be692e..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/contributing/contributing.po +++ /dev/null @@ -1,535 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/contributing.rst:2 657e0199c63a47f2a8d8e988aae7e621 -msgid "Contributing to the Mautic documentation" -msgstr "" - -#: ../../contributing/contributing.rst:4 40d461a93d6444c1b03024c7ad959e15 -msgid "" -"Mautic welcomes contributions to improve and maintain Mautic documentation." -msgstr "" - -#: ../../contributing/contributing.rst:6 28899444345b44a98e1c53ffe2163ba2 -msgid "" -"To contribute to the Mautic documentation, fork the :xref:`Mautic GitHub " -"User Documentation` repository." -msgstr "" - -#: ../../contributing/contributing.rst:8 a0b97ca2b0bc467bb9c3c9b616037441 -msgid "" -"To contribute to the Mautic developer documentation, fork the :xref:`Mautic " -"GitHub Developer Documentation`." -msgstr "" - -#: ../../contributing/contributing.rst:10 952dd2fb1e784ad7ad0b30cbe248aaaf -msgid "" -"These guidelines outline how to contribute to the Mautic documentation " -"hosted on GitHub. Make proposed changes by submitting a pull request (PR)." -msgstr "" - -#: ../../contributing/contributing.rst:12 3b90c18549594533883987321cf2bcfa -msgid ":ref:`Understanding the Repository Structure`" -msgstr "" - -#: ../../contributing/contributing.rst:13 7a5e49ac28fe4f838bb3db4be6aec575 -msgid ":ref:`Finding an Issue`" -msgstr "" - -#: ../../contributing/contributing.rst:14 fb50921fa526473da0c2f83713356923 -msgid ":ref:`Creating an Issue or Proposing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:19 017147a72f4a44cf8d8e5b02287598e9 -msgid ":ref:`Different Methods of Contributing Changes`" -msgstr "" - -#: ../../contributing/contributing.rst:16 09da4287f4ec4a4eb9e6dfc138bc15e0 -msgid ":ref:`Using Git on the Command Line`" -msgstr "" - -#: ../../contributing/contributing.rst:17 b8138fcf9eac4ff6b2a62d9ad052e788 -msgid ":ref:`Creating a Pull Request`" -msgstr "" - -#: ../../contributing/contributing.rst:18 c45e8f10d1264a608dd8e267c0c0a5a0 -msgid ":ref:`Using GitHub Desktop`" -msgstr "" - -#: ../../contributing/contributing.rst:19 e2625050c6f6488e982c367b1176afb4 -msgid ":ref:`Using the web interface`" -msgstr "" - -#: ../../contributing/contributing.rst:20 537e28dcf63449fb93cef4abeb10722f -msgid ":ref:`Using Gitpod`" -msgstr "" - -#: ../../contributing/contributing.rst:21 2d5a65ab0eff40899cbdd3f85a662344 -msgid ":ref:`Looking for help`" -msgstr "" - -#: ../../contributing/contributing.rst:24 86b1425b4fa149639bcbc6161d996f64 -msgid "Understanding the repository structure" -msgstr "" - -#: ../../contributing/contributing.rst:26 f53b20cf25454e419618d892652b32dd -msgid "" -"In Mautic, documentation uses ReStructuredText - :xref:`RST`. The files use " -"the ``*.rst*`` extension." -msgstr "" - -#: ../../contributing/contributing.rst:28 f3a1573b3d9647fa9d3f519f1926d17f -msgid "" -"When you fork the Mautic documentation repository, the repository includes " -"the following files and folders:" -msgstr "" - -#: ../../contributing/contributing.rst:30 a053dd11914d40908f8c737bf623adc2 -msgid "" -"**README.md**: this file introduces and describes the repository, but " -"doesn't contain any product documentation." -msgstr "" - -#: ../../contributing/contributing.rst:31 0b64c8f453d2441aa4acbaf8b1ab9393 -msgid "" -"**docs**: this folder contains folders for each section in the Mautic " -"documentation." -msgstr "" - -#: ../../contributing/contributing.rst:32 2c61b8ef01a4483fb7467358c81c06ff -msgid "" -"**docs/links**: this folder contains a file for each external link used in " -"this repository" -msgstr "" - -#: ../../contributing/contributing.rst:33 ff242bb10e0d4c6c8f66dcc832dd3729 -msgid "" -"**style-guide.md**: the style guide contains rules and guidelines for " -"submitting content with a consistent tone, voice, and messaging across the " -"Mautic documentation. It's encouraged to read the " -":doc:`/contributing/mautic_style_guide` ." -msgstr "" - -#: ../../contributing/contributing.rst:34 b75a4cb56c43466da4a4fbf677063a7f -msgid "" -"**index.rst**: this file serves as a homepage for the documentation, " -"including references to all other sections in the documentation." -msgstr "" - -#: ../../contributing/contributing.rst:35 731f6077eadc472288ec0fe895038b09 -msgid "" -"**requirement.txt**: this file contains all the packages and dependencies " -"requirements you need to have installed." -msgstr "" - -#: ../../contributing/contributing.rst:38 aed65e007d054782902d7ec7f768f55a -msgid "Finding an issue" -msgstr "" - -#: ../../contributing/contributing.rst:40 a1b5e88e3f104d2e98aca2d5077ee4a2 -msgid "" -"You can familiarize yourself with the Mautic contribution process by " -"reviewing the list of **issues** on the :xref:`Mautic Docs issues` section. " -"These issues have a relatively limited scope." -msgstr "" - -#: ../../contributing/contributing.rst:42 24589232391c41938d5db0244e9154f7 -msgid "" -"After you have selected an issue on the :xref:`Mautic Docs issues` issue " -"queue, follow the below steps:" -msgstr "" - -#: ../../contributing/contributing.rst:44 4856c52d06364fadaa178bb5e0c9c552 -msgid "" -"Add a comment indicating that you would like to own the ticket. This is to " -"avoid conflicts with others also working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:45 0f2383e1e7d04f5b8ad9fee27b579976 -msgid "" -"After a member of the Education Team assigns you the issue, you can modify " -"files and track changes on GitHub using command line utility, your web " -"browser, GitHub Desktop, or Gitpod." -msgstr "" - -#: ../../contributing/contributing.rst:46 248b7699c9554ae0bb118427ed245bf9 -msgid "" -"Once you submit a pull request, a member of the Education Team reviews your " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:49 fd4dc108a51243eaa91c29da787c82ee -msgid "Creating an issue or proposing changes" -msgstr "" - -#: ../../contributing/contributing.rst:51 090452e33c254efbae991802162050df -msgid "You can create an issue or propose changes by following these steps:" -msgstr "" - -#: ../../contributing/contributing.rst:53 7b72758f82c147fd8103104b2e5261c7 -msgid "" -"Create a new GitHub issue associated with the relevant repository and " -"propose your change there. Be sure to include implementation details and the" -" rationale for the proposed change." -msgstr "" - -#: ../../contributing/contributing.rst:54 822f69aecf1942ae82d010b33e325f18 -msgid "A Mautic team member reviews all submitted issues." -msgstr "" - -#: ../../contributing/contributing.rst:55 4acef7e4cd86440092a913e277205e2a -msgid "Once approved, you may start working on the issue." -msgstr "" - -#: ../../contributing/contributing.rst:59 ae72e19da9c94f84964fa37acd802e06 -msgid "Different methods of contributing changes" -msgstr "" - -#: ../../contributing/contributing.rst:61 b9eafac680fb433e9648a22eda9d412b -msgid "" -"This section explains the different methods you can use to create pull " -"request to submit changes and collaborate." -msgstr "" - -#: ../../contributing/contributing.rst:66 3f21d5a2f05947319c906746b43aad33 -msgid "Using Git on the Command Line" -msgstr "" - -#: ../../contributing/contributing.rst:70 0890fffeda2f4f08aca455b38e4745e1 -msgid "" -"Using Git, you'll need to fork this :xref:`Mautic GitHub User " -"Documentation` repository and clone the Mautic documentation repository on " -"your machine to edit the documents locally. You must propose changes in a " -"branch, which ensures that the default branch only contains finished and " -"approved work. You can then commit changes for tracking, and submit them as " -"a PR for the Education Team reviewers." -msgstr "" - -#: ../../contributing/contributing.rst:72 2a062d34d49c4d8b9c5968fb9aa59cb7 -msgid "" -"To work with Git locally requires you to have Git installed and configured, " -"and to have a GitHub account. If you want to work with Git locally without " -"using the command line, you can work with the :ref:`GitHub Desktop` client." -msgstr "" - -#: ../../contributing/contributing.rst:74 65d87dcd239243efb4b8be4829e6ebf5 -msgid "" -"Alternatively, you can also install GitHub command-line tool to use GitHub " -"from the command line. For more information, visit the :xref:`GitHub CLI` " -"resource." -msgstr "" - -#: ../../contributing/contributing.rst:76 d7d111bb615a40dfbc4d11060211c032 -msgid "To edit documents using Git:" -msgstr "" - -#: ../../contributing/contributing.rst:78 4405342e8d2546dabbe2f07225167008 -msgid "Launch the command-line tool on your machine." -msgstr "" - -#: ../../contributing/contributing.rst:79 26e4acf7e626482ea166be949b1644f2 -msgid "" -"Change the working directory in the terminal to the location where you plan " -"to save the documentation repository using the ``cd`` command." -msgstr "" - -#: ../../contributing/contributing.rst:80 22153bbb6e96489790e33aa2ff35350f -msgid "Clone the Mautic documentation repository." -msgstr "" - -#: ../../contributing/contributing.rst:86 d5d14a2c2f4a4b21abe92b12d58e970c -msgid "" -"Create a new branch to manage your edits, and name it descriptively. For " -"example, ``revision-readme-file``. You can do this either at the command " -"line using the syntax below:" -msgstr "" - -#: ../../contributing/contributing.rst:92 6cb5fa0358e14849af547ac8b96ff78f -msgid "" -"After editing the documents, commit your edits to your local repository, and" -" add a commit message. The Git commit command requires a commit message that" -" describes what has changed and why so that collaborators to track, review, " -"and merge the edits." -msgstr "" - -#: ../../contributing/contributing.rst:100 267e940646ea4da187fbd008c86c5cad -msgid "" -"Push the current branch to GitHub to synchronize the changes, and set the " -"remote as upstream. You may need to enter your GitHub login credentials." -msgstr "" - -#: ../../contributing/contributing.rst:106 0ce1cbc1456841289efb194b9a7f7863 -msgid "" -"After you've pushed your commits, visit your repository on GitHub to view " -"the reflected changes and the commit history. Review the changes at your " -"fork - ``https://github.com/{yourusername}/user-documentation.``" -msgstr "" - -#: ../../contributing/contributing.rst:108 812e52dc7a4144e69499d9b770ef0959 -msgid "Submit a pull request for a review of the committed changes." -msgstr "" - -#: ../../contributing/contributing.rst:113 4dbd22e9a1d742b9aa7d379a895bc50a -msgid "Creating a Pull Request" -msgstr "" - -#: ../../contributing/contributing.rst:117 00ede78e8b1b42d895cdcd40f76dbd7c -msgid "" -"Once you have made all changes, the Education Team needs to review them. The" -" first step is to create a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:119 54527916de58456d903d04b972192277 -msgid "To create a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:121 9b78ce2badd149779d275a33a31b487a -msgid "" -"Navigate to your GitHub account (for example, " -"``https://github.com/{username}``) on the portal." -msgstr "" - -#: ../../contributing/contributing.rst:122 1cbabf61fd06437a86118d7e09323b4c -msgid "" -"Go to the Documentation repository, and GitHub shows notification detailing " -"the recent push to your branch with a button labeled **Start a pull " -"request**." -msgstr "" - -#: ../../contributing/contributing.rst:124 7abde44f9a7040a78041f341c427e6f9 -msgid "Click **Compare & pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:127 876bded356e040f8b813f0a98d2efaa8 -msgid "When you Open a pull request:" -msgstr "" - -#: ../../contributing/contributing.rst:126 -#: ../../contributing/contributing.rst:162 36533e27096f432d95e62f418c8d933b -#: c52f83c246e34b7b84ec2ec7130dca0d -msgid "Enter details about the changes you have made to the document." -msgstr "" - -#: ../../contributing/contributing.rst:127 -#: ../../contributing/contributing.rst:163 a1376530a7d74f17b5ff23302e3a524e -#: 1e8f413708ba4c25a87f1bae2c5f336c -msgid "" -"Reference any :xref:`Mautic Docs issues` that the current pull request (PR) " -"resolves so that they're automatically linked. For example, if the PR closes" -" an existing issue #0001, reference it in the description as 'closes #0001'." -msgstr "" - -#: ../../contributing/contributing.rst:128 412565a7e7954e27bcf47090ae5d1336 -msgid "" -"@mentions of the Mautic administrator for reviewing the proposed changes." -msgstr "" - -#: ../../contributing/contributing.rst:129 fadde3faef784e99ba459ccf901e13db -msgid "Click **Create pull request** to generate the PR link." -msgstr "" - -#: ../../contributing/contributing.rst:130 dad07ed3f5ea4fd1bcdfd045c82bd396 -msgid "" -"Share the pull request (PR) link in the #t-education Channel on " -":xref:`Mautic Community Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:133 41f824d65a524ff1b5eef024a0a278c1 -msgid "" -"For more Git command line instructions, view the :xref:`Git Cheatsheet`." -msgstr "" - -#: ../../contributing/contributing.rst:138 8e2f6976164945f5baf3bbdb7d0d5587 -msgid "Using GitHub Desktop" -msgstr "" - -#: ../../contributing/contributing.rst:142 e33e7c95ee154fa7be706a698eb78e04 -msgid "" -"Using :xref:`GitHub Desktop`, you can clone the Mautic documentation " -"repository on your machine, and edit the documents locally. You propose " -"changes in a branch, which ensures that the default branch only contains " -"finished and approved work. The changes are then reviewed in GitHub Desktop " -"and committed for tracking." -msgstr "" - -#: ../../contributing/contributing.rst:145 d961a62408b5447d8d2134ab73e7d7ea -msgid "Using the web interface" -msgstr "" - -#: ../../contributing/contributing.rst:147 36e2a8a00d4b441da1ff7e22192497e4 -msgid "" -"You're making changes in a project you don't have write access to. " -"Submitting a change writes it to a new branch in your fork {username}/user-" -"documentation, so you can send a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:149 a7c52b76b3b646c6966a53e140c224e4 -msgid "To contribute content using the GitHub web interface:" -msgstr "" - -#: ../../contributing/contributing.rst:151 da758a2790e74671b27551c719e56705 -msgid "" -"Navigate to the :xref:`Mautic GitHub User Documentation` repository, and " -"click the button at the top right to **Fork** it to add it to your profile " -"repositories." -msgstr "" - -#: ../../contributing/contributing.rst:152 6b75a6465af94a89af938e089725cf34 -msgid "" -"Select a file, and click the **Edit** icon in the upper-right corner to edit" -" the document." -msgstr "" - -#: ../../contributing/contributing.rst:153 c1dac85a06324871994c7e6c414e2db3 -msgid "" -"After making your changes, scroll down and add descriptive text explaining " -"what you have changed and why." -msgstr "" - -#: ../../contributing/contributing.rst:154 bd754dacb10b45a0829e9f0680f0c4a5 -msgid "Click **Propose Changes**." -msgstr "" - -#: ../../contributing/contributing.rst:155 7418fdd115ac44febd09cbb6fa953134 -msgid "" -"Next, review and edit the changes from your branch for committing the " -"changes. If you haven't already created a new branch do this now, to manage " -"your contributions separately for each task you work on." -msgstr "" - -#: ../../contributing/contributing.rst:158 a3a2614da1474626b4a083d7377d8b04 -msgid "" -"If you are updating more than one file, then you can select the newly " -"created branch in the dropdown on the left hand side when you're viewing a " -"file to switch to the branch, and then repeat this process until you have " -"made all the required edits, before creating a pull request." -msgstr "" - -#: ../../contributing/contributing.rst:160 -#: ../../contributing/contributing.rst:165 18f0654448fb4dd3a482cc752bdc6d9d -#: 062bccbb78364323a100cc5a08ea490b -msgid "Click **Create pull request**." -msgstr "" - -#: ../../contributing/contributing.rst:163 5623e2a99ee546c79741569c77ea0b1b -msgid "Next in the open pull request interface:" -msgstr "" - -#: ../../contributing/contributing.rst:164 61ed25bb59214c009da1910554ae7508 -msgid "" -"@mention the Mautic Education Team if appropriate for reviewing the proposed" -" changes." -msgstr "" - -#: ../../contributing/contributing.rst:166 e0cf6f402bf345aa97ef0486603d60ce -msgid "" -"Share the pull request (PR) link in #t-education on :xref:`Mautic Community " -"Slack`." -msgstr "" - -#: ../../contributing/contributing.rst:169 e73b059cd146491fb12ec3937c8b2ff8 -msgid "Using Gitpod" -msgstr "" - -#: ../../contributing/contributing.rst:171 763f392b76b24638b9453ce342cd5e6e -msgid "To launch your local Mautic workspace in your browser using Gitpod:" -msgstr "" - -#: ../../contributing/contributing.rst:173 4fd3b9cf2cb64ba68d483d3006939dd0 -msgid "" -"Navigate to Mautic's documentation repository on GitHub in your browser. " -"Ensure you have already made a personal fork as described in the preceding " -"section." -msgstr "" - -#: ../../contributing/contributing.rst:174 1187c1d5b2d440aea9aca1f1568d469b -msgid "" -"In the browser's address bar, prefix the entire URL of the repository, " -"branch or pull request you want to open in Gitpod with " -"``https://gitpod.io/#`` - for example " -"``https://gitpod.io./#https://github.com/{username}/user-documentation``, " -"and press **Enter**." -msgstr "" - -#: ../../contributing/contributing.rst:175 b9cd81b0a3e84c81a85a04be49a46bce -msgid "" -"Within the Mautic ephemeral developer environment, **'welcome.md'** displays" -" suggesting the next steps." -msgstr "" - -#: ../../contributing/contributing.rstNone 6c92a25d8b2041ac8d6fdc2b0550b775 -msgid "Screenshot of Gitpod Welcome" -msgstr "" - -#: ../../contributing/contributing.rst:181 b37deec0cbfc4ae796a70363386bcc33 -msgid "" -"Create a new branch by clicking on the taskbar at the bottom left of the " -"screen where it shows ``main`` as the default branch. At the top of the " -"window you'll be able to enter a name for the new branch and press enter. At" -" the bottom left, the branch name changes - this always shows which branch " -"you are currently working on." -msgstr "" - -#: ../../contributing/contributing.rst:182 5643c89010bf430b8ef1da66126f0b75 -msgid "Edit your documents." -msgstr "" - -#: ../../contributing/contributing.rst:183 d0012e7e24d24151beb50c1a1ff820db -msgid "" -"To commit your changes, click the **source control** icon in the navigation " -"side bar." -msgstr "" - -#: ../../contributing/contributing.rst:184 b37e3f0ecf764f9eaf4cde6fe6eb1804 -msgid "" -"On the Source Control section, click the **checkmark icon** next to the " -"files you have edited to 'stage' the changes - preparing to commit the " -"changes." -msgstr "" - -#: ../../contributing/contributing.rst:185 e63689afb3c5436081f36459f445be9d -msgid "" -"Enter a brief description to explain your commits, and then click the " -"**checkmark icon** next to the Source Control header to commit those " -"changes." -msgstr "" - -#: ../../contributing/contributing.rstNone 58ac8139db8848908c5a1306bda703c7 -msgid "Screenshot of Gitpod commit screen" -msgstr "" - -#: ../../contributing/contributing.rst:192 8721309d312944c1b6b11c12bba359cf -msgid "" -"Click **Sync Changes** to push and pull commits from the main origin which " -"you can also access by clicking the three dot menu, and selecting 'Pull, " -"Push' followed by 'sync'." -msgstr "" - -#: ../../contributing/contributing.rst:195 09ac30df6cba4266969b22ff7401bcc3 -msgid "Looking for help" -msgstr "" - -#: ../../contributing/contributing.rst:197 0471d8d1aa1642e7a36fb121d6ba631f -msgid "" -"You can join the :xref:`Mautic Community Slack` to connect with other " -"documentation writers and the wider community, if you aren't already a " -"member. Mautic documentation conversations happen in the #t-education and " -"#doc Channels." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/contributing/mautic_style_guide.po b/docs/locale/zh_TW/LC_MESSAGES/contributing/mautic_style_guide.po deleted file mode 100644 index 1b5b7beb..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/contributing/mautic_style_guide.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../contributing/mautic_style_guide.rst:2 -#: 399ee1a117cd4e4ca5729b2db4e6a7b5 -msgid "Mautic Style Guide" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/dashboard/dashboard.po b/docs/locale/zh_TW/LC_MESSAGES/dashboard/dashboard.po deleted file mode 100644 index 9b0004fe..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/dashboard/dashboard.po +++ /dev/null @@ -1,282 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../dashboard/dashboard.rst:2 5463d582e34042f499e5c7fe98008f95 -msgid "Dashboard" -msgstr "" - -#: ../../dashboard/dashboard.rst:4 5106ea503b3949f6b088fa388313062c -msgid "" -"Mautic 1.4.0 introduced a customizable dashboard where each User can compose" -" widgets with information they want to track. Mautic 2.0 brought a number of" -" enhancements to the Dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:7 8a6bdbaff1b64fef90733f82ee915c78 -msgid "Date range filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:9 170d92cd5fd94c939ed2d7a07c5f54ba -msgid "" -"All the widgets will display data in the selected global date range filter " -"at the top of the widget list. The default date range is set from 30 days " -"ago to today." -msgstr "" - -#: ../../dashboard/dashboard.rstNone 836c7cc4e4804fed91dea96d8a27b5d5 -msgid "Screenshot of Dashboard date filter" -msgstr "" - -#: ../../dashboard/dashboard.rst:15 483cb4303acd4164b31347a41e06864c -msgid "" -"Line charts will change the time unit automatically depending on the day " -"count selected in the date range filter like this:" -msgstr "" - -#: ../../dashboard/dashboard.rst:17 8b5a72ad81374970ba8854417286930c -msgid "" -"Date range is equal 1 day: data will be displayed in hours Date range is " -"between 1 and 31 days: data will be displayed in days Date range is between " -"32 and 100 days: data will be displayed in weeks Date range is between 101 " -"and 1000 days: data will be displayed in months Date range is greater than " -"1001 days: data will be displayed in years" -msgstr "" - -#: ../../dashboard/dashboard.rst:19 8067f08534ee4cc9b47d5e4b5ac5587f -msgid "" -"The only widget exceptions which display the same information independent on" -" the date range are *Upcoming Emails* and *Recent activity*." -msgstr "" - -#: ../../dashboard/dashboard.rst:22 6199dcccc1a84fffaf51d4b1dfbf015d -msgid "Widgets" -msgstr "" - -#: ../../dashboard/dashboard.rst:26 57e93a30c7c048c5943453ea2f4f03d8 -msgid "" -"Don't create too many widgets. It can slow the dashboard Landing Page load " -"down. If you have performance issues, decrease the amount of widgets." -msgstr "" - -#: ../../dashboard/dashboard.rst:28 a194f43652864b8c8bb93febfa8a2df6 -msgid "" -"A new widget can be added to your dashboard when you click the \"Add " -"widget\" button. The \"Add widget\" Form which appears after each widget " -"will let you define:" -msgstr "" - -#: ../../dashboard/dashboard.rst:30 785c347c6b1f48819b5d5160e5e310ea -msgid "" -"**Name:** describe what the widget displays. If not filled, Mautic will call" -" it the same as the widget type you select." -msgstr "" - -#: ../../dashboard/dashboard.rst:32 082ee449449c4e8e8b2dbd7509bb54f8 -msgid "" -"**Type:** select what information you want to display from the predefined " -"widget types." -msgstr "" - -#: ../../dashboard/dashboard.rst:34 2464b8c662bd4439ab71e97f8c3f7569 -msgid "" -"**Width:** select how wide the widget should be. The options are 25%, 50%, " -"75%, 100%. The default option is 100%. The optimal width for line charts is " -"100%, for tables 50%, for pie charts 25%." -msgstr "" - -#: ../../dashboard/dashboard.rst:36 7f81c41307884145946f78a9b52c9e19 -msgid "" -"**Height:** each widget can have different height. 5 heights are predefined." -" The dashboard will look best if you select a consistent height for each " -"widget in the same row." -msgstr "" - -#: ../../dashboard/dashboard.rst:38 c020da0cb83548e8a5cb479914a9e831 -msgid "Some widgets have additional options:" -msgstr "" - -#: ../../dashboard/dashboard.rst:40 a81016af6e7545999525a7e84a84434f -msgid "**Created Contacts over time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:42 e9296476be2245d7877464d9e13be6d6 -msgid "Show all Contacts: displays one line with all created Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:44 c76f0eef96a5496197a900e0fefae3aa -msgid "" -"Only identified: displays one line with only created and identified " -"Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:46 0344051754b5406c9462a10af27a0275 -msgid "Only anonymous: displays one line with only anonymous visitors." -msgstr "" - -#: ../../dashboard/dashboard.rst:48 0078097b983c4689b59f7551653495de -msgid "" -"All identified vs anonymous: displays 2 lines with anonymous visitors and " -"known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:50 77d188da90b4408cae0668b7a09be0e1 -msgid "" -"Top Segments: displays up to 6 lines representing the number of Contacts " -"added to the top 6 Segments. If no such Segment exists for the selected date" -" range, the chart won't be displayed." -msgstr "" - -#: ../../dashboard/dashboard.rst:52 8fad31ca30314df4a6eee70ea98d4609 -msgid "" -"Top Segments with Identified vs Anonymous: displays up to 6 lines " -"representing the top 3 Segments for the selected date range. Each Segment " -"will show 2 lines with anonymous visitors and known Contacts." -msgstr "" - -#: ../../dashboard/dashboard.rst:54 b45680ba97de4160acf48e3a68f408c9 -msgid "**Emails in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:56 d85c483aaf2d40168fd18b5e1d204ca9 -msgid "Only sent Emails: Displays 1 line with sent Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:58 6ee0166e7da44f4f9a985f466d21bc55 -msgid "Only opened Emails: Displays 1 line with opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:60 3c04d3a910df4b45b880389e9c7a903d -msgid "Only failed Emails: Displays 1 line with failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:62 ff3d659c377c49779a64e506ccf151cc -msgid "Sent and opened Emails: Displays 2 lines with sent and opened Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:64 4156ddcda3ae409b84f476d301ded464 -msgid "" -"Sent, opened and failed Emails: Displays 3 lines with sent, opened and " -"failed Emails." -msgstr "" - -#: ../../dashboard/dashboard.rst:66 3aa6b0a079fc42be928005ba6c532000 -msgid "**Landing Page visits in time**" -msgstr "" - -#: ../../dashboard/dashboard.rst:68 1cd160737d7a42d69f1a6402cc29d155 -msgid "Total visits - Displays 1 line with all visits (Landing Page hits)." -msgstr "" - -#: ../../dashboard/dashboard.rst:70 703d68033f7d4a6e8a023ca84edadfd6 -msgid "Unique visits - Displays 1 line with unique visits (Contacts)." -msgstr "" - -#: ../../dashboard/dashboard.rst:72 c1e3568cf6934a61a5417ac927a763f7 -msgid "Total and unique visits - Displays 2 lines with unique and all visits." -msgstr "" - -#: ../../dashboard/dashboard.rst:75 57189928602d4502b2637d1f2689711d -msgid "Widget ordering" -msgstr "" - -#: ../../dashboard/dashboard.rst:77 dfe732b469244f48a7bf89a6a43ef00d -msgid "" -"Each widget can be moved on the dashboard using the drag and drop interface." -" Click and hold on the name of the widget to move it to another position." -msgstr "" - -#: ../../dashboard/dashboard.rst:80 cd8079861abc4d05b79dee5c41267a3d -msgid "Dashboard export" -msgstr "" - -#: ../../dashboard/dashboard.rst:82 69e0a5c0b679495d8d73efc710c94554 -msgid "" -"Each dashboard, once configured, can be exported to a single file and shared" -" with others. You can make a backup, send it to a colleague or share it " -"online. It exports only the widget configuration - the data which it pulls " -"is not included in the exported file." -msgstr "" - -#: ../../dashboard/dashboard.rst:85 a30259e591264b7992a2511367a0388e -msgid "Dashboard import" -msgstr "" - -#: ../../dashboard/dashboard.rst:87 647722cdc3e640c08849298b417392f8 -msgid "" -"If you export a dashboard, you can then upload it and import it again in the" -" Dashboard Import page." -msgstr "" - -#: ../../dashboard/dashboard.rst:89 4f5ea748fcf9411ab2dc3950dd58f7b7 -msgid "" -"Mautic installation come pre-loaded with 3 pre-defined dashboards. The one " -"called default.json is imported automatically, when your dashboard doesn't " -"contain any widgets. The other 2 predefined dashboards are provided as an " -"example. You can export and import any other dashboards and switch between " -"them. Pre-defined dashboards can be:" -msgstr "" - -#: ../../dashboard/dashboard.rst:91 74cb5194b453486e9e58be5e8cb6c210 -msgid "" -"Previewed - This will display the dashboard widgets for preview. The " -"dashboard will be loaded using your existing Mautic data. Nothing is saved " -"or changed. Applied - This sets the dashboard as your primary dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:95 2e27837ccd3f449d96b33372e5f751f5 -msgid "" -"Your current widgets will be deleted by this action. Export the current " -"dashboard if you want to go back to it later. Deleted - This will delete the" -" predefined dashboard." -msgstr "" - -#: ../../dashboard/dashboard.rst:99 79cebba605a9411e97bb1e4cb728e0d5 -msgid "Widget cache" -msgstr "" - -#: ../../dashboard/dashboard.rst:101 7cf2bfd7f041424c93eebf8926525d5c -msgid "" -"The WidgetDetailEvent automatically caches the widget detail data for a " -"period of time defined in the configuration. The default cache expiration " -"period is 10 minutes." -msgstr "" - -#: ../../dashboard/dashboard.rst:104 fcac895289714f12994a898a02dfcc96 -msgid "Dashboard Permissions" -msgstr "" - -#: ../../dashboard/dashboard.rst:106 a4447f76b31c441f94a3ec9055b58e90 -msgid "" -"If a Mautic User doesn't have the 'see others' or 'see own' permissions for " -"a bundle, they won't be able to create widgets for that bundle. However, the" -" widget can still be visible on their dashboard. For example if a User " -"creates the widgets and then the administrator removes the permission for " -"that bundle, or if a User imports a dashboard which has widgets for bundles " -"they're not permitted to access. In these cases, the widget is displayed on " -"the dashboard, but with a message that the User doesn't have permission to " -"see the data." -msgstr "" - -#: ../../dashboard/dashboard.rst:110 eff746a55d564ea9a43efb61490df82f -msgid "" -"If a Mautic User has permission to see only their own data from a bundle, " -"they will see only their own data in the Dashboard widgets. For example only" -" Contacts which they own, Landing Page hits of the Landing Pages they " -"created and so on." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/getting_started/getting_started.po b/docs/locale/zh_TW/LC_MESSAGES/getting_started/getting_started.po deleted file mode 100644 index d4f66fcb..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/getting_started/getting_started.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/getting_started.rst:4 -#: e9665eb9ce8b448691239555802ae526 -msgid "Getting Started with Mautic" -msgstr "" - -#: ../../getting_started/getting_started.rst:8 -#: b31696601dc441afbae0cf346f4a7c91 -msgid "" -"There are some basic tasks you need to do to get started with using Mautic." -msgstr "" - -#: ../../getting_started/getting_started.rst:10 -#: fcc184c682094bba938182f5c02cd41f -msgid "Check out the following resources:" -msgstr "" - -#: ../../getting_started/getting_started.rst:13 -#: 3df2d5ed391f42deb1daf2502d43ede1 -msgid "Contents" -msgstr "" - -#: ../../getting_started/getting_started.rst:14 -#: 04a09c765dd14e489a625af769767b7b -msgid ":doc:`how_to_install_mautic`" -msgstr "" - -#: ../../getting_started/getting_started.rst:16 -#: 0419811db2a3469cb4bd87e2588b76c7 -msgid ":doc:`how_to_update_mautic`" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/getting_started/how_to_install_mautic.po b/docs/locale/zh_TW/LC_MESSAGES/getting_started/how_to_install_mautic.po deleted file mode 100644 index 89fe55b1..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/getting_started/how_to_install_mautic.po +++ /dev/null @@ -1,754 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_install_mautic.rst:2 -#: a1242851022b48fe952b6e4211cef2c8 -msgid "How to install Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:4 -#: 466cdf5be8004d1b9aa35c11b9d941cc -msgid "" -"There are several ways to install Mautic, you should select the most " -"appropriate method for your situation and technical knowledge." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:6 -#: 583d0e63c2d2400c9d9e0e95483e3606 -msgid "" -":ref:`Installing from the production package`, either :ref:`using the web-" -"based installer` or :ref:`installing at the command line`," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:7 -#: 93212c4222a94926aacacd4fdb58caba -msgid "" -"Installing locally by :ref:`cloning from GitHub` - " -"for testing and local development," -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:8 -#: ac9ef734bd0d417f955257201457bdb6 -msgid ":ref:`Installing with Composer`" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:11 -#: 080c5f653e9543d79a883cf59ae577ef -msgid "Installing from the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:13 -#: 0919f72577ab4555b4f022b3bf7afdb6 -msgid "" -"You can install the Mautic production package either by uploading the zipped" -" installation package into the server location or using command line " -"installations. The Mautic production package also requires access to a " -"database server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:15 -#: 9a2636b102e24576a3ebfa2a041336d2 -msgid "The Mautic installation is a three-step process:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:17 -#: c1656fd881914cac8b210d09f633cd94 -msgid "Integrate the database server with the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:19 -#: dbc92ef0f2b94356824cc319bdc63645 -msgid "Create an administrator account to access the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:21 -#: 27b93e4610784cf8865ea477c210b898 -msgid "Set up the Email server for Email marketing automation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:24 -#: c51395d654a941c4950407b0846ce2e0 -msgid "Preparing for installation" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:26 -#: a5c1e441a8a04b25931792e3f0b072a1 -msgid "Before installing a package, ensure that:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:28 -#: 0a95543c579546fab71342f69d1be360 -msgid "" -"Your server environment meets the minimum requirements for the version you " -"are installing. Read more in :xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:30 -#: 0282461b58a74f4fbf8c63dee1d560cb -msgid "Your server directory is writable by the Mautic web server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:32 -#: d7e1fa3970fc4d6a9e26dbbe7c7d4275 -msgid "" -"Your database meets the minimum requirements for the supported databases and" -" valid User permissions to access to the database. Read more in " -":xref:`Mautic's Requirements`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:34 -#: b2b80220da224b7c9a1bd385e4dc53ed -msgid "" -"Your server has enough free disk space to run the installation. Consider the" -" database size as well." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:36 -#: 23e813a908d54a5fb109d7cdc4b20991 -msgid "PHP's `max_execution_time` is at least 240 seconds." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:39 -#: 2c320bf180cb48b5a791cae1e5379ad8 -msgid "Downloading a production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:41 -#: aebb5f4cd2ed4d4b93edab5d9cbb59ef -msgid "" -"To get started :xref:`Download Mautic` to access the zip file of the latest " -"stable release." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:43 -#: 60814acdb96041f1a5ea9cb2e980db89 -msgid "" -"For more information about the available Mautic packages, visit the Mautic " -"Releases :xref:`Mautic Releases` page." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:46 -#: 2de9ab66a8d64030ab03b107558bc374 -msgid "Uploading the production package" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:48 -#: 5c53f9bb908642edba4fa9a850e4eaa7 -msgid "" -"After downloading a desired package, upload the package zip file to your web" -" server, and unzip it in the directory where you plan to host the Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:50 -#: 7a4ee988a82f4a72b9142b68b3700091 -msgid "" -"Your web server must have the permissions to access the unzipped files. For " -"more information on file and folder permissions, visit " -":doc:`/troubleshooting/file_ownership_and_permissions`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:53 -#: a09fbd9f78754969a46c0ce056bc99cb -msgid "Using the web-based installer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:55 -#: dcd62cef44d94560b785da4ac68b213c -msgid "" -"To access the Mautic server from your browser, enter the URL that " -"corresponds to the Mautic instance (for example, `https://m.example.com`) in" -" your web browser. It's recommended to secure your installation with an SSL " -"certificate (https)." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:58 -#: 830b15e8d4344ce4a9cdc81cc40946c0 -msgid "Conducting environment checks" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:60 -#: 32e43e5b5bdd4dd58be1d0e4cdb513f2 -msgid "" -"After loading the package in the server, the Mautic installer validates if " -"it can run successfully in your server environment." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:62 -#: dd38d8c4010b47009e327feef31ca18e -msgid "" -"You must resolve installation errors, displayed in red, before completing " -"the Mautic package installation successfully. Warnings, displayed in orange," -" are often recommendations for a better Mautic experience." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ba3639c3ff0844eaa30203791d8d56ca -msgid "" -"Screenshot showing Mautic pre-flight checks with warning about installing on" -" a non-SSL connection" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:68 -#: 71a96e7d32ce4aa6a2f07e77a5e3c1b9 -msgid "" -"If the environment checks are successful - displayed in green - click **Next" -" Step** to begin the installation process." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:71 -#: 5815aa5f008347fabe2e5c862e60e8bd -msgid "Integrating the database" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:73 -#: abe9b26b41054669994fd6d12c0386fd -msgid "Mautic assumes that the database is on the same server as Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:75 -#: ba67ed5ddf3646bfa6b170d57db2daa2 -msgid "" -"For setting the database server on the **Mautic Installation-Database " -"Setup** window:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:77 -#: 9c32a4b3bc0842468568ace492d999e1 -msgid "Select **Database Driver**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:79 -#: 0aacee6b1be14abc94ce7e94c12d4c91 -msgid "Enter **Database Host**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:81 -#: bef7d7f081c24156a5b8d71a005bf9ff -msgid "Enter **Database Name**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:83 -#: b3d169ecf14548ae950d22688c9c54f7 -msgid "Enter **Database Username**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:85 -#: 0a4727678d704ebc9fc32c88c45e6b7c -msgid "" -"If desired, you can also enter values for **Database Port**, **Database " -"Table Prefix**, **Database Password**, and **Prefix for backup tables**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:87 -#: 8d479fba96d147959970ff861768a4b6 -msgid "" -"**Backup existing tables?** is on by default, but you should turn it off for" -" a new installation." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: dbd63396824c4f8b8de043e0a53ba2b3 -msgid "Screenshot of database configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:93 -#: ../../getting_started/how_to_install_mautic.rst:104 -#: 291d2fe0040749fba77545bef8242121 61bb2f4671f947a6b79bf36ff0612bee -msgid "Click **Next Step**." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:96 -#: a5f8e7ceb72d4e04ae5d73faa2541a5f -msgid "Creating the administrator account" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:98 -#: b69c190486c241c0bd7aecce4fa33b81 -msgid "" -"To create an Administrator account for your Mautic instance, enter values " -"for the different fields on the **Mautic Installation - Administrative " -"User** window." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: e050527ca807432bbe967f22e682c758 -msgid "Screenshot showing the create User screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:109 -#: 65bdb5ab49a341e7a9e568586108eb11 -msgid "Configuring Email settings" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:113 -#: 43317e81fd854a939e6a8a54982e2186 -msgid "" -"To configure your Email settings for your Mautic instance, enter details of " -"your Email provider on the **Mautic Installation - Email Configuration** " -"window. You can use a tool such as :xref:`Mailhog` to configure a local " -"instance for testing." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: 2da7addba4f945ae84af7a31a9fe44be -msgid "Screenshot showing the Email configuration screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:119 -#: 02a549dd638142718353cfa5dee63f25 -msgid "For configuring your Email sender settings:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:121 -#: 2d663d37aea84c9996753ef073145109 -msgid "" -"Enter the name and Email address to use with all outgoing Email " -"communications by default. Verify that the provided Email address has been " -"successfully authorized by your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:123 -#: 9be5cf98863543039bdb4f4b0a652854 -msgid "" -"**Queue** Emails and send them through a cron job - to trigger the queue " -"processing - instead of sending them immediately for larger instances of " -"Email handling." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:125 -#: 65f49b9aa8f249df9705712a35c00ca0 -msgid "" -"Select **Mailer transport**. If your provider isn't listed, select **Other " -"SMTP Server** and provide the SMTP credentials. API-based sending is " -"significantly faster than SMTP. Depending on the provider you select, " -"additional fields appear to allow you to enter API keys and select regions." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:127 -#: b82b86170be343c890b1530b90878955 -msgid "Enter **Server** and **Port** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:129 -#: e65de85e15be43628303c14ceafa53df -msgid "" -"Select **Encryption** and **Authentication mode** for your Email provider." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:131 -#: 3292859160b74dc6b75a7df3b75eb8e4 -msgid "Click **Next Step** to log into the Mautic server." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:134 -#: 03caa7b334e74d93bb0bb6f98ab0e214 -msgid "Logging into Mautic" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:136 -#: 01cf172c2d554b59aa6bd0423eab4cb0 -msgid "" -"On the Mautic login window, enter your Mautic administrator credentials to " -"log into your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rstNone -#: ea441e85622b4e8cabb3586aeb04f0e5 -msgid "Screenshot of Mautic login screen" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:142 -#: d3e1dcf5e48241028554c505ec28c402 -msgid "Click **login** to continue working on your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:145 -#: 13e541e512204860b73e1666af5d671e -msgid "Installing with command line" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:147 -#: b6d3dad4b1c1458eaf74f0ba5767eca7 -msgid "" -"You can also install Mautic using the command line. You can either pass the " -"settings parameters in the command, or create a local PHP file with your " -"database settings. You can also define properties in this file using the " -"syntax expected by the command-line options." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:149 -#: 81da0ceee45140b88dcd4ec4be73a2e7 -msgid "" -"Use the command ``path/to/php bin/console mautic:install --help`` for the " -"list of options and flags available." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:179 -#: f872346deed64b6d9f5a6bf51644448b -msgid "Use the syntax below within a ``local.php`` file:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:208 -#: 41974930cd484c9ea4920943b0c43d1a -msgid "Installing with a local PHP file" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:210 -#: e1ab7f238abd4904a03327f04443d471 -msgid "" -"Run the following command after replacing the path to PHP bin and Mautic " -"instance URL." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:212 -#: 1f060ccb726b42c5a7306986ca35b572 -msgid "``path/to/php bin/console mautic:install https://m.example.com``" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:214 -#: fae632a88d364e938f37acc78c95d004 -msgid "If desired, you can also add parameters in the install command:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:224 -#: 021f5747c7e441458327f6ba25c99237 -msgid "" -"As the installation process begins, it flags up warnings and aborts if there" -" are any critical errors." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:246 -#: a4ef2bcc2a9b45d5b0e5369b5f55edc7 -msgid "" -"You can now login to your Mautic instance with your Mautic Admin " -"credentials." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:249 -#: ed9af07c17cf438981ab10c054ea4ed3 -msgid "Installing from GitHub" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:250 -#: a561438a9d144cd688457a86d9293840 -msgid "TODO" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:253 -#: c38aa2ec9f8c47deb6b4b5bc9d9f8c9f -msgid "Installing with Composer" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:254 -#: 9d2565c551d843e49cf97f25e816a702 -msgid "" -"Since :xref:`Mautic 4` it's possible to install and manage Mautic using the " -"full power of Composer. Mautic uses the latest version of :xref:`Composer`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:256 -#: d9da54ef08444f8b9a234142f6b3619a -msgid "" -"Mautic is in the process of decoupling Plugins and Themes from core, however" -" at present while they have been technically mirrored out into separate " -"repositories, the source files remain in the main :xref:`Mautic GitHub " -"repository`." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:258 -#: ea86d0af666a4b5ebd92481b69eff0bf -msgid "" -"When you clone from GitHub, running ``composer install`` installs all the " -"dependencies, there are some other handy features which you can take " -"advantage of when installing and managing Mautic." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:263 -#: 75b4ce7e48414a3b844044565c793f6b -msgid "Using the Recommended Project" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:267 -#: e04744f46fa94bc0b982cd4dfc249778 -msgid "" -"The Mautic :xref:`Recommended Project` is a template which provides a " -"starter kit for managing your Mautic dependencies with Composer." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:270 -#: 5111fbbc8f934f4696568038a3fd8e5e -msgid "" -"The instructions below refer to the global Composer installation. You might " -"need to replace Composer with ``php composer.phar`` or something similar for" -" your setup." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:272 -#: c33d53a7e74848fda022b4f185c07cb5 -msgid "The basic command to use the Recommended Project is:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:278 -#: 35aa27b1cb04462eaba9fd121824fe47 -msgid "" -"With Composer you can add new dependencies to install along with Mautic:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:285 -#: eb2e79f20d70452f9cb4574cb165f0f8 -msgid "" -"The Composer ``create-project`` command passes ownership of all files to the" -" created project. You should create a new git repository, and commit all " -"files not excluded by the .gitignore file." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:290 -#: cdcd27a692c84c0b976c0eac82145afe -msgid "What does the Recommended Project template actually do?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:294 -#: bd38133a955e48c2aded1baed4c98e1d -msgid "When installing the given ``composer.json`` the following occurs:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:296 -#: 0db2f7648774469cb82f4c34dda35a91 -msgid "Install Mautic in the ``docroot`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:297 -#: c0ed62bcf0b74a61a2aa9d24aa35da3d -msgid "" -"Autoloader uses the generated Composer autoloader in " -"``vendor/autoload.php``, instead of the one provided by Mautic in " -"``docroot/vendor/autoload.php``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:298 -#: 0f09aa4e5de14d18bf282b37c31f96af -msgid "" -"Plugins - packages of type ``mautic-plugin`` - are in ``docroot/plugins/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:299 -#: 4907e72a83d24c568d655106f5092529 -msgid "" -"Themes - packages of type ``mautic-theme`` - are in ``docroot/themes/``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:300 -#: 2106d354775b488080a6c1c8bbdef180 -msgid "Creates ``docroot/media`` directory." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:301 -#: 103fec7ab19540f9805158bcc969ecfb -msgid "" -"Creates environment variables based on your ``.env`` file. See " -"``.env.example``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:306 -#: ea1ef7cdfa7e48eb969ab7ce58b83761 -msgid "Updating Mautic Core" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:310 -#: 9195a0c9a375481f8c82af9820161d8d -msgid "" -"The Recommended Project attempts to keep all of your Mautic core files up-" -"to-date." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:312 -#: cb397a17ba504291b96193d8a081a5a6 -msgid "" -"The project ``mautic/core-composer-scaffold`` updates your scaffold files " -"whenever there is an update to ``mautic/core-lib``." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:314 -#: afe11e77c4f048e8a52f03ea6df1d6c8 -msgid "" -"If you customize any of the \"scaffolding\" files - commonly .htaccess - you" -" may need to merge conflicts if new release of Mautic Core result in changes" -" to your modified files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:316 -#: fcdb41ad1984441cba24f4f19f4ba4a8 -msgid "Follow the steps below to update your core files." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:318 -#: d68db3aa5c9a49cd8156e18152b629ee -msgid "" -"1 Run ``composer update mautic/core-lib --with-dependencies`` to update " -"Mautic core and its dependencies." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:320 -#: 43ec6c91ac5240448212eee98d6b3eb4 -msgid "" -"2 Run ``git diff`` to determine if any of the scaffolding files have " -"changed. Review the files for any changes and restore any customizations to " -".htaccess or others." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:322 -#: 571f6da49ea54d978878627c879f1136 -msgid "" -"3 Commit everything all together in a single commit, so the ``docroot`` " -"remains in sync with the core when checking out branches or running git " -"bisect." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:324 -#: 74645d5aad8145cd8b1e0991b49eb564 -msgid "" -"4 In the event that there are non-trivial conflicts in step 2, you may wish " -"to perform these steps on a branch, and use ``git merge`` to combine the " -"updated core files with your customized files. This facilitates the use of a" -" three-way merge tool such as :xref:`kdiff3`. This setup isn't necessary if " -"your changes are simple - keeping all of your modifications at the beginning" -" or end of the file is a good strategy to keep merges easy." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:326 -#: fcd0132f42614e3c9e070980e0732f6a -msgid "" -"5 Run the following commands to update your database with any changes from " -"the release:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:339 -#: e9e045b6231b4775a6a8c24e428c92f6 -msgid "Composer FAQs" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:344 -#: f083b6eacf30419b85509b519e92704a -msgid "Should you commit downloaded third party Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:346 -#: bd8ef95c20c0463fba9b83a5e8305861 -msgid "" -"Composer says that the :xref:`Composer commit dependencies`. They provide " -"arguments against but also workarounds if a project decides to do it anyway." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:349 -#: e06aa6707b154063b6882ec4c306ee0e -msgid "Should you commit the scaffolding files?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:351 -#: e05a97402060451d90aad9ad0f878315 -msgid "" -"The :xref:`Mautic Composer scaffold` Plugin can download the scaffold files " -"- for example ``index.php``, ``.htaccess`` - to the ``docroot/`` directory " -"of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:354 -#: 52aa7f5dfcd541368da79bd7b070391e -msgid "" -"If you haven't customized those files you could choose to not commit them in" -" your version control system - for example, git. If that's the case for your" -" project it might be convenient to automatically run the Mautic Scaffold " -"Plugin after every install or update of your project." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:356 -#: f9d04816d30540da9d15b040501c3707 -msgid "" -"You can achieve that by registering ``@composer mautic:scaffold`` as post-" -"install and post-update command in your composer.json:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:372 -#: 725d042c4ed84caa9aec170ebfd3b393 -msgid "How can you apply patches to downloaded Plugins?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:374 -#: 2e14113c502744a58c956fb820fb9985 -msgid "" -"If you need to apply patches - depending on the Plugin, a pull request is " -"often a better solution - you can do so with the ``composer-patches`` " -"Plugin." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:376 -#: 506dabbfb83748de900586587e991aec -msgid "" -"To add a patch to Mautic Plugin foobar insert the patches section in the " -"extra section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:392 -#: 9fe02a3e7ed549efb16863c665cf4b4e -msgid "How can you specify a PHP version?" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:396 -#: c944caaaf5444e04a1ce3c93be5d92db -msgid "" -"This project supports PHP 7.4 as the minimum version currently - check " -":xref:`Mautic's Requirements` however, it's possible that a Composer update " -"may upgrade some package that could then require PHP 7+ or 8+." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:398 -#: 990c02e3295e487aa89dd66b1124fe0a -msgid "" -"To prevent this you can add this code to specify the PHP version you want to" -" use in the config section of ``composer.json``:" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:412 -#: c6887a6974744e36b50a4eddd4693097 -msgid "Setting up a local testing environment with DDEV" -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:416 -#: ed6ff8d8003449bdba33d8598632d194 -msgid "" -"Often there is a need to have a local environment for testing Mautic - for " -"example making a backup, testing new features or bug fixes." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:418 -#: 8a515f1488904a799d8f481a29c9b18d -msgid "" -"In Mautic, DDEV is the tool of choice for this purpose. It's very easy to " -"work with." -msgstr "" - -#: ../../getting_started/how_to_install_mautic.rst:420 -#: c277eebc09a744fcb373a836a5d8edf5 -msgid "" -"To learn how to set up DDEV with Mautic, please review the documentation in " -"the Contributors Handbook at https://contribute.mautic.org/contributing-to-" -"mautic/tester." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/getting_started/how_to_update_mautic.po b/docs/locale/zh_TW/LC_MESSAGES/getting_started/how_to_update_mautic.po deleted file mode 100644 index 20040d54..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/getting_started/how_to_update_mautic.po +++ /dev/null @@ -1,410 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../getting_started/how_to_update_mautic.rst:4 -#: f7101bd949d649ecbfc1120b25db035e -msgid "How to update Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:8 -#: e5cba7d0a2b846949ba2a7231e0ab534 -msgid "There are two ways to update Mautic:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:10 -#: 17aa21064db046b891473490ac778d43 -msgid "Using the Command Line - recommended" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:11 -#: a1c7d2a215e84f9ea7ccafa2d39e025b -msgid "Through the user interface" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:13 -#: b9ec6aafebe241b08d5ed4ec1683db59 -msgid "" -"If your instance is in production, has a large number of contacts and/or is" -" on shared hosting, it's **strongly** recommended that you update at the " -"command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:16 -#: 4db6f58d5b5b49489e143096e09c67ef -msgid "" -"Updating in the user interface requires a significant amount of resources, " -"and can be error-prone if the server restricts resource allocation. This can" -" lead to failed updates and corrupted data. This feature will be completely " -"removed in Mautic 5.0 and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:19 -#: 4a7410c4a2f74d08bf7c8bc18ad428fb -msgid "Updating at the command line (non-composer based installations)" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:20 -#: 136bffcb70d04f5b80da325616696637 -msgid "" -"Before you commence updating Mautic, **please ensure that you have a tested " -"backup of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:22 -#: ../../getting_started/how_to_update_mautic.rst:79 -#: 0ecedca79c924fd8bdd263df8fa15f05 0d3316dc68e44d428cbb29480dfa0ff8 -msgid "" -"This means that you have downloaded the files and database of your Mautic " -"instance, and you have re-created it in a test environment somewhere and " -"tested that everything is working as expected. This is your only recourse if" -" there are any problems with the update. Never update without having a " -"working, up-to-date backup." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:25 -#: f9e06e55908741bda1bbadd5a231b41a -msgid "Checking for updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:27 -#: 8e0411e8893841a78e7e8e21f79b0d91 -msgid "" -"Mautic can only be updated using Composer via the command line from version " -"5.0." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:29 -#: dc136cff02234c5a9fd34f032bbd949e -msgid "" -"The update feature within the Mautic user interface (UI) has been deprecated" -" from Mautic 4.2, but you will be alerted within the UI (see below figure) " -"when a new version of the Mautic is available." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rstNone -#: 2f13874efc3647ad906858e9663a9d14 -msgid "Screenshot showing depracted update feature warning" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:36 -#: 171b8f8102dc4a87a312ad22854a50a3 -msgid "" -"Before starting to upgrade, it is highly recommended to take a backup of " -"your instance. If updates are available, you will receive an update " -"notification followed by step-by-step instructions in the CLI to complete " -"the process." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:38 -#: 6f4b102c8afa457685c4b7f5292bba3e -msgid "" -"Log in via the command line, and change directory to the Mautic directory " -"using the command" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:40 -#: 1cd9231e98714f9796c72f6cfee6182e -msgid "``cd /your/mautic/directory``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:42 -#: b157ef3b42d04e358c5e1e36b5f02c6d -msgid "" -"The first step is to find out if there are any updates available using the " -"following command:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:44 -#: 9f98f113e7b0468ea17ecb27496b638c -msgid "``php bin/console mautic:update:find``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:46 -#: 451d2dbe315e48079dd301b3073db5ce -msgid "" -"The output from this command tells you if there are any updates to apply. " -"The notification links to an announcement post which explains what the " -"release includes, and the recommended environment requirements if they are " -"not being met (for example, a higher version of PHP must be installed or " -"plugins that must be updated)." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:49 -#: a55c47e6f671494f98b3675f04ceac23 -msgid "" -"It's a good idea to review the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:51 -#: 3d58c55d962643be844af6d95b128145 -msgid "After a system readiness check, you can apply the updates." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:54 -#: cc1857a4ebf04b488533c43f796632bc -msgid "Installing updates at the command line" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:56 -#: 7943b12354ad4b8bacec1e579053cec5 -msgid "" -"If there are updates available, run the following command to apply them:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:58 -#: 6174606dbf1542f4a0949225562dee34 -msgid "``php bin/console mautic:update:apply``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:60 -#: 7ce76f37529b4ca5b6e25c1ac083e0d7 -msgid "" -"Once this is completed, you may be asked to run the command again with the " -"additional argument:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:62 -#: 42fbaf20bb0a4f5c9635795c869b3cd9 -msgid "``php bin/console mautic:update:apply --finish``" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:66 -#: 97d8d6ca05854f348af55b15837270ac -msgid "Updating in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:68 -#: fc83c5833a604b22b1d5828b8e508e1e -msgid "" -"When updating Mautic, there are several tasks which can take a long time to " -"complete depending on the size of your Mautic instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:71 -#: 7b52e54b6d0a491496d394c2538f6fce -msgid "" -"If you have a lot of contacts and/or use shared hosting, you might run into " -"problems when updating with the notification 'bell' icon in Mautic." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:73 -#: 5b20741d155641688a47cdbd779f335d -msgid "" -"When updating within the browser, problems usually manifest as the update " -"hanging part way through, or crashing with an error. They often arise as a " -"result of resource limitation, particularly on shared hosting environments." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:75 -#: 123eed26748f43928353955685d664ef -msgid "" -"For this reason, it's always recommended that you :ref:`update at the " -"command line` wherever possible. " -"From Mautic 5.0 the ability to update in the browser will be completely " -"removed, and you will have to update at the command line." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:77 -#: f0f38cc9b5964c339f6e2ebe44f8c37e -msgid "" -"Before you commence updating, **please ensure that you have a tested backup " -"of your Mautic instance**." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:82 -#: eb3f77879c2b4117a15c4cb664582a22 -msgid "Checking for updates in the browser" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:84 -#: 9d06829a243d4e609f088659f311ffdb -msgid "" -"When Mautic makes a new release, a notification appears in your Mautic " -"instance." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:86 -#: 081f9a197da747d580cb15e28bbcbd4a -msgid "" -"The notification links to an announcement post which explains what the " -"release includes." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:89 -#: 572dd7b162be4c3a9fb849e550ad18f8 -msgid "" -"It's a good idea to read the announcement link for information about the " -"release. There may be important information or steps that you may need to " -"take before updating." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:91 -#: 4f3e6150a2f74397ac9e3fd46062222b -msgid "" -"Once you have thoroughly read the release notes, and have tested your backup" -" Mautic instance, you can click the notification to complete the update." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:93 -#: 695a0b81de9d4255ba32d1ed03b5b916 -msgid "" -"The update takes time to complete, and each step updates in the browser as " -"it proceeds. Be patient and allow it to finish. On completion, a message " -"confirms that the update has completed successfully." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:96 -#: f211825e3521406ba0c93c1371a53b17 -msgid "The update wasn't successful" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:98 -#: 155732f996dc471fa942502941133a89 -msgid "" -"If this has happened to you, head over to the Troubleshooting section for a " -"step-by-step walk-through of how to complete the update. Maybe consider " -"using the command line next time." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:101 -#: 52fa63215f1e4f148917c71e4807c6fe -msgid "Stability levels" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:103 -#: 9dcb788ea327474791478128222cde79 -msgid "" -"By default, Mautic receives notifications both in the user interface and at " -"the command line for stable releases only." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:105 -#: 811ac03380934e7d8883bd5c43cd6e5d -msgid "" -"If you wish to help with testing early access releases in a development " -"environment, do the following" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:107 -#: d26eb77200ee47ff9e82c226119f0268 -msgid "" -"Edit your configuration and set the stability level to Alpha, Beta, or " -"Release Candidate. This allows you to receive notifications for early access" -" releases." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:108 -#: aa499e37acd04341b4d42163ee880e8b -msgid "" -"Always read the release notes before updating to an early access release." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:109 -#: 33106937d9c7453db26c8a7abd650e29 -msgid "Never enable early access releases for production instances." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:112 -#: c974b845d3644181a19f20f2ee0786be -msgid "What to do if you need help updating Mautic" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:114 -#: 9abe18c9eef2452597c47fe60585a9c5 -msgid "" -"If you need help, you can ask for it in several places. You should remember " -"that most members of the Community Forums, Slack, and GitHub are volunteers." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:116 -#: e7fe0fadbbf745bfb99895864d8072e3 -msgid "" -"The :xref:`Mautic Community Forums` is the place where you can ask questions" -" about your configuration if you think it is the cause of the problem. " -"Please search before posting your question, since someone may have already " -"answered it." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:118 -#: 1eb228d265a24dafb0b369bfba581756 -msgid "" -"The live :xref:`Mautic Community Slack` is also available, but all support " -"requests have to be posted on the forums. Post there first, then drop a link" -" in Slack if you plan to discuss it there." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:120 -#: 7cd9cf4f10454bd3b5561bb092ff1107 -msgid "" -"In all cases, it is important to provide details about the issue, as well as" -" the steps you have taken to resolve it. At a minimum, include the " -"following:" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:122 -#: fcfdbbffe64f475bb1784e2c33f25c94 -msgid "" -"Steps to reproduce your problem - a step-by-step walk-through of what you " -"have done so far" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:123 -#: 49d4b5a8e0fe469088ca91c8434cec34 -msgid "Your server's PHP version." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:124 -#: 2a9a5f07c16340ba8467523941d8d718 -msgid "" -"The version of Mautic you are on, and the version you are aiming to update " -"to" -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:125 -#: 512d417c252f458688a4fe0f461bf5d8 -msgid "" -"The error messages you are seeing - if you don't see the error message " -"directly, search for it in the var/logs folder within your Mautic directory " -"and in the server logs. Server logs are in different places depending on " -"your setup. Ubuntu servers generally have logs in " -"``/var/log/apache2/error.log``. Sometimes your hosting provider might offer " -"a graphical interface to view logs in your Control Panel." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:127 -#: 8b97f70dfedb45ff96419542953bbf76 -msgid "" -"If you don't provide the information requested as a minimum, the person who " -"might try to help you has to ask you for it, so please save them the trouble" -" and provide the information upfront. Also, importantly, please be polite. " -"Mautic is an open source project, and people are giving their free time to " -"help you." -msgstr "" - -#: ../../getting_started/how_to_update_mautic.rst:129 -#: c8fad2ed7025401dbf1469f906e5fea6 -msgid "" -"If you are sure that you have discovered a bug and you want to report it to " -"developers, you can :xref:`Mautic Github New Issue` on GitHub. GitHub is not" -" the right place to request support or ask for help with configuration " -"errors. Always post on the forums first if you aren't sure, if a bug report " -"is appropriate this can link to the forum thread." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/index.po b/docs/locale/zh_TW/LC_MESSAGES/index.po deleted file mode 100644 index 730e5d60..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/index.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../index.rst:13 -msgid "Mautic Documentation" -msgstr "" - -#: ../../index.rst:22 -msgid "Getting Started" -msgstr "" - -#: ../../index.rst:31 -msgid "Set Up" -msgstr "" - -#: ../../index.rst:42 -msgid "Configuration" -msgstr "" - -#: ../../index.rst:49 -msgid "Troubleshooting" -msgstr "" - -#: ../../index.rst:56 -msgid "Authentication" -msgstr "" - -#: ../../index.rst:63 -msgid "Campaigns" -msgstr "" - -#: ../../index.rst:74 -msgid "Categories" -msgstr "" - -#: ../../index.rst:81 -msgid "Channels" -msgstr "" - -#: ../../index.rst:95 -msgid "Companies" -msgstr "" - -#: ../../index.rst:102 -msgid "Components" -msgstr "" - -#: ../../index.rst:112 -msgid "Contacts" -msgstr "" - -#: ../../index.rst:120 -msgid "Dashboard" -msgstr "" - -#: ../../index.rst:127 -msgid "Email & Landing Page Builders" -msgstr "" - -#: ../../index.rst:135 -msgid "Mautic Marketplace" -msgstr "" - -#: ../../index.rst:142 -msgid "Plugins" -msgstr "" - -#: ../../index.rst:150 -msgid "Points" -msgstr "" - -#: ../../index.rst:157 -msgid "Reports" -msgstr "" - -#: ../../index.rst:164 -msgid "Stages" -msgstr "" - -#: ../../index.rst:2 bd063c21218c4cf9b64974d8aff63d17 -msgid "Welcome to the Mautic documentation" -msgstr "" - -#: ../../index.rst:4 ec88f919cd554855962d28d3baff658c -msgid "" -"**Mautic** is an open source marketing automation platform that provides you" -" with the greatest level of audience intelligence, thus enabling you to make" -" more meaningful customer connections" -msgstr "" - -#: ../../index.rst:6 41d7010bf60f49688e8e4f53c6e02695 -msgid "" -"Check out the :doc:`/getting_started/getting_started` section for further " -"information, including how to :doc:`/getting_started/how_to_install_mautic`." -msgstr "" - -#: ../../index.rst:10 c551275accd14646b7314c7ece52ff16 -msgid "This documentation project is under active development." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/marketplace/marketplace.po b/docs/locale/zh_TW/LC_MESSAGES/marketplace/marketplace.po deleted file mode 100644 index 0da42577..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/marketplace/marketplace.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../marketplace/marketplace.rst:4 b9cbc7efe18f48b39fd4c55867a91412 -msgid "Mautic Marketplace" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/overview/overview.po b/docs/locale/zh_TW/LC_MESSAGES/overview/overview.po deleted file mode 100644 index c3a91b69..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/overview/overview.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../overview/overview.rst:2 697a3187edf34aa0ad2cdf570514b99b -msgid "Mautic overview" -msgstr "" - -#: ../../overview/overview.rst:4 eb4f1099626045018b7db1ef26d53af3 -msgid "" -"The Mautic platform helps you create a strong marketing strategy for your " -"business. With Mautic, you can:" -msgstr "" - -#: ../../overview/overview.rst:7 0c6584386c924c43afab77c78fd105c8 -msgid "" -"Connect with your Contacts over Channels like Emails, Text Messages, Social " -"media, and Focus Items." -msgstr "" - -#: ../../overview/overview.rst:9 cecfa2d970b74160b265ec8ceccd257c -msgid "" -"Segment your Contacts based on business requirements and personalize your " -"marketing strategy for each Segment." -msgstr "" - -#: ../../overview/overview.rst:10 a0d30c1d715d49d08f48197d999493ef -msgid "Create personalized Campaigns to engage with your Contacts." -msgstr "" - -#: ../../overview/overview.rst:11 a481225a549a48a9b0a2da0fb84b06d3 -msgid "" -"Use performance metrics in Dashboards, Reports, Points, and Stages to " -"measure the efficiency of your marketing strategy." -msgstr "" - -#: ../../overview/overview.rst:14 0392c787d0d942d0ab2f8bacbd401e82 -msgid "How it works" -msgstr "" - -#: ../../overview/overview.rst:16 ed59a5c434814bd5ba8c86dd2d12e0f4 -msgid "" -"To start, it helps to understand how the different pieces of Mautic fit " -"together to give you a holistic marketing platform experience." -msgstr "" - -#: ../../overview/overview.rstNone 3b6257a6d57a4b47a75b50970ea2b412 -msgid "Mautic Overview" -msgstr "" - -#: ../../overview/overview.rst:24 48329c19d0644e778831b90b987099fd -msgid "Contact management" -msgstr "" - -#: ../../overview/overview.rst:26 e02f2304bf8a43e2bf49f66560acd8f3 -msgid "" -"Build a rich and functional database of Contacts for your business, group " -"them together based on your business needs or based on shared attributes." -msgstr "" - -#: ../../overview/overview.rst:28 62fb6a286d474f0e8bcfa00e77b9c9b5 -msgid "" -":doc:`/contacts/manage_contacts` Individuals who have visited your websites " -"or interacted with your business in some way. They may be known or unknown " -"visitors. Contacts are the primary factor of a marketing automation " -"platform." -msgstr "" - -#: ../../overview/overview.rst:30 01ba406bd5314eedbd0c34125206e887 -msgid "" -":doc:`/contacts/manage_segments` A group of your Contacts that share certain" -" attributes. For example, you may segment Contacts based on a contact's " -"location. This may help you easily send out location-based offers or " -"promotions to this specific group of Contacts." -msgstr "" - -#: ../../overview/overview.rst:32 424f9ccd3ea64980a500090e2ffaa572 -msgid "" -":doc:`/companies/companies_overview` A group of Contacts based on the " -"Company or Companies that the Contact is assigned to." -msgstr "" - -#: ../../overview/overview.rst:36 fdac2aed65db42198911066e17975ff8 -msgid "Components" -msgstr "" - -#: ../../overview/overview.rst:38 ff862162c658406ca5034a6744b741c5 -msgid "" -"Create and manage various types of content that you use for your marketing " -"Campaigns to engage your Contacts." -msgstr "" - -#: ../../overview/overview.rst:40 c2692d178add42abac778ccdc1516203 -msgid "" -":doc:`/components/assets` Valuable items that you provide to your Contacts " -"upon completion of a Form. White papers, a downloadable app/file, documents " -"or videos are some examples of assets." -msgstr "" - -#: ../../overview/overview.rst:42 d83396302e7047e8abb7272dda0268de -msgid "" -":doc:`/components/forms` Forms are the primary point of customer engagement." -" They're used to collect Contact information, often in exchange for " -"providing access to an Asset such as a download, an event registration, or " -"an Email newsletter." -msgstr "" - -#: ../../overview/overview.rst:44 d5c2321fe767487682c512dc64069bd1 -msgid "" -":doc:`/components/landing_pages` A powerful feature that not only allows you" -" to promote content quickly and easily, but also allows you to rapidly " -"create Landing Pages that are tightly tailored for a specific purpose, such " -"as an advertising campaign." -msgstr "" - -#: ../../overview/overview.rst:46 41835d0ebcd54e0291c12e565f7e4f1e -msgid "" -":doc:`/components/dynamic_web_content` A feature that you can use to " -"personalize the web experience for your Contacts. Marketers can display " -"different content to different people in specific areas of a webpage." -msgstr "" - -#: ../../overview/overview.rst:49 f6ba156141684c0a850c49f6b08b330a -msgid "Campaigns" -msgstr "" - -#: ../../overview/overview.rst:51 661eef260e4143f3bd2cea011dc0efd3 -msgid "" -":doc:`/campaigns/campaigns_overview` With your Contact information and the " -"Components in place, you can start to create customized marketing activities" -" for your Contacts. You create these marketing activities primarily in " -"Campaigns." -msgstr "" - -#: ../../overview/overview.rst:54 16d3c4e7e1ae41bd81cc011b5d699c2b -msgid "Channels" -msgstr "" - -#: ../../overview/overview.rst:56 b36fbfa9afcd4e0fae37c67c90ee7877 -msgid "" -"Choose one or more Channels to deliver the content and messages to your " -"Contacts." -msgstr "" - -#: ../../overview/overview.rst:58 97b3580fcbc449d8aca841050a4a4766 -msgid "" -":doc:`/channels/marketing_messages` A way to personalize communication with " -"your Contacts. With marketing messages, Contacts receive your content on a " -"Channel they've set as their preference." -msgstr "" - -#: ../../overview/overview.rst:60 7192cf6f8d304960b3d0006e1e2128a0 -msgid "" -":doc:`/channels/emails` Use built-in Email templates to send messages to a " -"group of your Contacts, or send personalized messages to specific Contacts." -msgstr "" - -#: ../../overview/overview.rst:62 3ff6b3b8a9ef4cb59d87db49a61f521a -msgid "" -":doc:`/channels/focus_items` A type of web personalization that enables " -"marketers to embed on a webpage pop-up messages and Forms, bars and splash " -"screens based on the Contact's behavior. By using Focus Items, you can " -"easily convert visitors into known Contacts." -msgstr "" - -#: ../../overview/overview.rst:64 5b17c0c1dba9491984898aeca3a85eae -msgid "" -":doc:`/channels/social_monitoring` Marketers can add Contacts to Mautic " -"through Twitter mentions and hashtags." -msgstr "" - -#: ../../overview/overview.rst:67 55f0269439a84ef48bed283e5dfa7081 -msgid "Assess performance" -msgstr "" - -#: ../../overview/overview.rst:69 cc7f0fcb049f4f468edfcd46bc8de26d -msgid "" -"Analyze trends and assess the performance of your marketing strategy using " -"various tools." -msgstr "" - -#: ../../overview/overview.rst:71 bb9a6d9aa0a542d7abd62b79f803c3f4 -msgid "" -":doc:`/dashboard/dashboard` A high-level representation of Contact data, " -"Campaigns, and activities. You can create a highly personalized dashboard " -"based on the information that you want to track." -msgstr "" - -#: ../../overview/overview.rst:73 3cb6834d738c47ef8ae525527d29988b -msgid "" -":doc:`/reports/reports` A tool to measure the effectiveness of your " -"marketing Campaigns, Emails, Forms, or page hits. Reports also let you " -"troubleshoot or workaround areas of improvement to enhance your marketing " -"strategy." -msgstr "" - -#: ../../overview/overview.rst:75 dbe8789b74774e92bc042ac3819adae6 -msgid "" -":doc:`/points/points` A score that is an indicator of progress for a Contact" -" or customer. Points are a way for marketers to measure which of their " -"Contacts are the most engaged based on their interactions and behavior." -msgstr "" - -#: ../../overview/overview.rst:77 f9f35187445249839e49c1c13df3cb02 -msgid "" -":doc:`/stages/stages` A customizable feature that enables you to keep a " -"track of where your Contacts are in their marketing/sales journey" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/plugins/twilio.po b/docs/locale/zh_TW/LC_MESSAGES/plugins/twilio.po deleted file mode 100644 index 2f2af0b8..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/plugins/twilio.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twilio.rst:4 143f7d625be949769f00eeccff05167c -msgid "Twilio" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/plugins/twitter.po b/docs/locale/zh_TW/LC_MESSAGES/plugins/twitter.po deleted file mode 100644 index 0097a25f..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/plugins/twitter.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../plugins/twitter.rst:4 aaecdb58c3a4435eaab5aa0e317dd443 -msgid "Twitter" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/points/points.po b/docs/locale/zh_TW/LC_MESSAGES/points/points.po deleted file mode 100644 index 78a39a3d..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/points/points.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../points/points.rst:4 6fa6495415f04494aa6de30a8de6499c -msgid "Points" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/reports/reports.po b/docs/locale/zh_TW/LC_MESSAGES/reports/reports.po deleted file mode 100644 index 89db14ec..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/reports/reports.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../reports/reports.rst:4 2e722c5759204335b2c51f437ebe2db1 -msgid "Reports" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/set_up/cron_jobs.po b/docs/locale/zh_TW/LC_MESSAGES/set_up/cron_jobs.po deleted file mode 100644 index 1c788fd5..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/set_up/cron_jobs.po +++ /dev/null @@ -1,451 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/cron_jobs.rst:4 6ed2bc8f660d41f3927b01ea2020a6e2 -msgid "Cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:10 5178cdc5671144b7847ede17a0663dd1 -msgid "" -"Mautic 3 introduced a new path for cron jobs ``bin/console`` - if you are " -"using the legacy Mautic 2.x series you should replace this with the older " -"version, ``app/console``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:12 d8626ee3ded64141809e7833aefda354 -msgid "" -"Mautic requires a few :xref:`cron jobs` to handle some maintenance tasks " -"such as updating Contacts or Campaigns, executing Campaign Actions, sending " -"Emails, and more. You must manually add the required cron jobs to your " -"server. Most web hosts provide a means to add cron jobs either through SSH, " -"cPanel, or another custom panel. Please consult your host's " -"documentation/support if you are unsure on how to set up cron jobs." -msgstr "" - -#: ../../set_up/cron_jobs.rst:17 ad0633a1f8cf4c528fd5e93e29e4a9b4 -msgid "" -"If you're new to Linux or Cron Jobs, then the Apache Foundation has " -":xref:`an excellent guide` which you should read before asking questions via" -" the various support Channels." -msgstr "" - -#: ../../set_up/cron_jobs.rst:19 e4cde42883b14aca92d10a32ce7253a5 -msgid "" -"When setting up cron jobs, you must choose how often you want the cron jobs " -"to run. Many shared hosts prefer that you run scripts every 15 or 30 minutes" -" and may even override the scheduled times to meet these restrictions. " -"Consult your host's documentation if they have such a restriction." -msgstr "" - -#: ../../set_up/cron_jobs.rst:21 207b3f99fff74791a727802d7469e718 -msgid "" -"**It's HIGHLY recommended that you stagger the following required jobs so as" -" to not run the exact same minute.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:23 04f17bcab5564cf9bf075771faf12a3e -msgid "For instance:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:32 4e5a8647e5bb435397f88cb7e2300c6f -msgid "Required" -msgstr "" - -#: ../../set_up/cron_jobs.rst:34 1ff544b080f84862aea4a10ba1822564 -msgid "" -"Mautic needs some mandatory cron jobs to run on a regular basis as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:37 5f0f7d4e68814d058dcb5b19bda2b7ce -msgid "Segment cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:39 f17f7b91d63d48799a9fb4174d875216 -msgid "**To keep the Segments current:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:45 ../../set_up/cron_jobs.rst:62 -#: 185bc6d5e22347158ddf61ad0a0fceee 31be07e262d849ab81e6c34f742203f6 -msgid "" -"By default, the script processes Contacts in batches of 300. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of Contacts to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:47 ../../set_up/cron_jobs.rst:64 -#: 543509e0960845a3b16b77a42dceac0b 61e1912c2cd14b4db387e7e0cbdace52 -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-contacts`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:52 3bf666594eba454c9cb5b2a44dc22efc -msgid "Campaign cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:56 3d1014196a014321b62ea05983fa0b0a -msgid "**To keep Campaigns updated with applicable Contacts:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:66 0742f07e4f2e4887b56996eeaa2f66e1 -msgid "**To execute Campaigns events:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:72 92feb70223d74032b1a46198fe25d269 -msgid "" -"By default, the script processes Contacts in batches of 100. If this is too " -"many for your server's resources, use the option ``--batch-limit=X`` " -"replacing X with the number of events to process each batch." -msgstr "" - -#: ../../set_up/cron_jobs.rst:74 a46491e66ec248ee806601e947b4bf1f -msgid "" -"You can also limit the number of Contacts to process per script execution " -"using ``--max-events`` to further limit resources used." -msgstr "" - -#: ../../set_up/cron_jobs.rst:78 c840d3f793cf4d1dbe664a0e31202708 -msgid "" -"**To send frequency rules rescheduled marketing Campaign messages:** " -"Messages marked as *Marketing Messages* - such as Emails as part of a " -"marketing Campaign - get held in a message queue IF frequency rules are " -"setup as either system wide or per Contact. To process this queue and " -"reschedule sending these messages, add this cron job:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:82 41553a3ed7ab461683a53c423a87abe4 -msgid "``mautic:messages:send``" -msgstr "" - -#: ../../set_up/cron_jobs.rst:86 c9befdc2d205429fab4ab83f20b13b06 -msgid "" -"that these messages are only added to the queue when frequency rules apply " -"either system wide or per Contact." -msgstr "" - -#: ../../set_up/cron_jobs.rst:89 3d12dd66af614207a8bda1634c9a46e9 -msgid "Optional" -msgstr "" - -#: ../../set_up/cron_jobs.rst:91 1b4b77c18fef49029fbf50715e630239 -msgid "" -"Depending on your server configuration, you can set up additional cron jobs " -"that are optional for tasks such as sending Emails, importing Contacts, and " -"more. The optional cron jobs are as follows:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:96 f0826307eb9f42bbb6abae0cd53b58ee -msgid "Process Email queue cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:100 976feb0d1e134683aecdca4e00994d2f -msgid "" -"If the system configuration is queueing Emails, a cron job processes them." -msgstr "" - -#: ../../set_up/cron_jobs.rst:109 b1b97e0ad0be48099507dcbb46330035 -msgid "Fetch and process Monitored Email cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:113 ac9c2f95907c4cbbacb7e5b0d88c1480 -msgid "" -"If you are using Bounce Management, set up the following command to fetch " -"and process messages:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:122 51ad3a6f9dab49d08121259cb0e35abe -msgid "Social Monitoring cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:126 0d28aed38b14478f9ef3a16f2f8c6207 -msgid "" -"If you are using Social Monitoring, add the following command to your cron " -"configuration:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:135 e190fb97628d423ebc4bca37c3b67683 -msgid "Import Contacts cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:139 b18c116d236840bbacb5e2ff81287e20 -msgid "" -"To import an especially large number of Contacts or Companies in the " -"background, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:145 3deb34fb3a3044b99f200f0cadfa31f3 -msgid "" -"The time taken for this command to execute depends on the number of Contacts" -" in the CSV file. However, on successful completion of the import operation," -" a notification appears on the Mautic dashboard." -msgstr "" - -#: ../../set_up/cron_jobs.rst:148 4f183d942210466781a19c04817852dd -msgid "Webhooks cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:150 2220e678201746769f9a2a729edc24eb -msgid "" -"If the Mautic configuration settings include Webhook batch processing, use " -"the following command to send the payloads:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:161 2d742b858fb745e3ba4581d27cb2a384 -msgid "Update MaxMind GeoLite2 IP database cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:165 03d49d7307384d0b93ab050de2dbcb0e -msgid "" -"Mautic uses :xref:`MaxMind's` GeoLite2 IP database by default. The database " -"license is :xref:`Creative Commons Attribution-ShareAlike 3.0 Unported " -"License` and thus Mautic can't include it within the installation package. " -"It's possible to download the database manually through Mautic's " -"Configuration or automatically using the following script. MaxMind updates " -"their database the first Tuesday of the month." -msgstr "" - -#: ../../set_up/cron_jobs.rst:175 2ad1ce0288f7439f995c400bc703e5bd -msgid "Clean up old data cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:177 ae84f059da534df3b3dc9f918ef6e469 -msgid "" -"Clean up a Mautic installation by purging old data. Note that you can't " -"purge some types of data within Mautic. Currently supported are audit log " -"entries, visitors - anonymous Contacts - and visitor Landing Page hits. Use " -"``--dry-run`` to view the number of records impacted before making any " -"changes." -msgstr "" - -#: ../../set_up/cron_jobs.rst:180 f381d7620271406d8cf1d8a130beb902 -msgid "" -"Use the ``--gdpr`` flag to delete data to fulfill GDPR European regulation. " -"This deletes Contacts that have been inactive for 3 years." -msgstr "" - -#: ../../set_up/cron_jobs.rst:182 15783fa69d624c9aadeb742495aef9c1 -msgid "" -"**This permanently deletes data. Be sure to verify database backups before " -"using as appropriate.**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:189 c47046b0a7074ca18b3a023af9de18a6 -msgid "MaxMind CCPA compliance cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:191 c6bf8346d8d043e7b1a748b238bfe8ba -msgid "" -"MaxMind requires Users to keep a \"Do Not Sell\" list up to date, and remove" -" all data relating to those IP addresses in the past from MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:193 95c1afcfa82e48599ff323c29fb82006 -msgid "See more details in the official :xref:`MaxMind website`." -msgstr "" - -#: ../../set_up/cron_jobs.rst:195 a295789513bd4fe9a8e5d7d6e5823e70 -msgid "" -"It's recommended to run these two commands once per week, one after another." -msgstr "" - -#: ../../set_up/cron_jobs.rst:201 b81a64a61dc54bd9bdb6cb3db0f4a037 -msgid "" -"This command downloads the database of Do Not Sell IP addresses from " -"MaxMind." -msgstr "" - -#: ../../set_up/cron_jobs.rst:207 5a05b2ba799e4ad292cea5f8a313c9ad -msgid "" -"This command finds data in the database loaded from MaxMind's Do Not Sell IP" -" addresses and deletes the data." -msgstr "" - -#: ../../set_up/cron_jobs.rst:212 7c76136afadc47f18e0b2d9e7db9d781 -msgid "Send scheduled broadcasts (Segment Emails) cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:216 643e34cb930244ae86a4f635000f86ef -msgid "" -"Starting with Mautic 2.2.0, it's now possible to use cron to send scheduled " -"broadcasts for Channel communications. The current only implementation of " -"this is for Segment Emails. Instead of requiring a manual send and wait with" -" the browser window open while AJAX batches over the send, it's possible to " -"use a command to initiate the process." -msgstr "" - -#: ../../set_up/cron_jobs.rst:218 21381929d7854944b1bb30ebd5c81028 -msgid "" -"The caveat for this is that the Email must have a published up date and be " -"currently published - this is to help prevent any unintentional Email " -"broadcasts. Just as it was with the manual/AJAX process the message is only " -"sent to Contacts who haven't already received the specific communication. " -"This command sends messages to Contacts added to the source Segments later, " -"so if you don't want this to happen, set an unpublish date." -msgstr "" - -#: ../../set_up/cron_jobs.rst:225 8ef0c632f24d416f8a22a9f5cd966445 -msgid "Command parameters:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:227 b53e6197cb554685a266f3c78eeacdd5 -msgid "" -"``--channel=email`` what Channel to execute. Defaults to all Channels if " -"none provided." -msgstr "" - -#: ../../set_up/cron_jobs.rst:229 40fc65641de14981b50cdd37c4c87236 -msgid "``--id=X`` is what ID of Email, SMS or other entity to send." -msgstr "" - -#: ../../set_up/cron_jobs.rst:231 009eec5b7ed140ad8636c1ae78e25308 -msgid "" -"``--limit=X`` is how many Contacts to pull from the database for processing," -" set to 100 by default. Using this flag each time the cron fires, it " -"processes X Contacts. The next time the cron job runs, it processes the " -"following X Contacts, and so on." -msgstr "" - -#: ../../set_up/cron_jobs.rst:233 41f0a5cde86e41e4bac84151af676f61 -msgid "" -"``--batch=X`` controls how many Emails processed in each batch. This can be " -"different for every provider. For example, Mautic has API connection to " -"SparkPost. Their API can send - at present - 1000 Emails per call. Therefore" -" the batch should be 1000 for the fastest sending speed with this provider. " -"Many SMTP providers can't handle 1000 emails in one batch, so this would " -"need to be lower." -msgstr "" - -#: ../../set_up/cron_jobs.rst:235 f7ee8763e0224b648467e605c692f7a6 -msgid "" -"``--min-contact-id`` and ``--max-contact-id`` allows the separation of Email" -" sending by smaller chunks, by specifying contact ID ranges. If those ranges" -" won't overlap, this allows you to run several broadcast commands in " -"parallel." -msgstr "" - -#: ../../set_up/cron_jobs.rst:240 5c75bfd7fe8e42718d2a44bd2add0c2a -msgid "Send scheduled Reports cron job" -msgstr "" - -#: ../../set_up/cron_jobs.rst:244 afa1f9b1af8749f58e993b1760fa4856 -msgid "" -"Starting with Mautic 2.12.0, it's now possible to use cron to send scheduled" -" Reports." -msgstr "" - -#: ../../set_up/cron_jobs.rst:252 62212a10c89640b5b135aaca66bb0b90 -msgid "" -"for releases prior to 1.1.3, it's required to append ``--env=prod`` to the " -"cron job command to ensure commands execute correctly." -msgstr "" - -#: ../../set_up/cron_jobs.rst:257 80911fa4846b4f4dafb59ab2ab759401 -msgid "Configure Mautic Integration cron jobs" -msgstr "" - -#: ../../set_up/cron_jobs.rst:261 186fc43f478f4059a7fc230eb1c42d15 -msgid "" -"To perform synchronization of all Integrations and to manage Plugins, use " -"the cron job commands in this section." -msgstr "" - -#: ../../set_up/cron_jobs.rst:263 af48ff866e1f4c408514ff55e2af29c5 -msgid "**To fetch Contacts from the Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:269 ../../set_up/cron_jobs.rst:281 -#: 1ea5e652055a4154a7876971ce9dc003 755f84012e5744c687d8bfc894f06e6a -msgid "or" -msgstr "" - -#: ../../set_up/cron_jobs.rst:275 e726a96b4925466aa5a2f044e3189514 -msgid "**To push Contact activity to an Integration:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:287 607a60a15819433087054261e1f6deda -msgid "" -"These commands work with all available Plugins. To avoid performance issues " -"when using multiple Integrations, you must specify the name of the " -"Integration by adding the ``-integration`` suffix to the command. For " -"instance, for integration of Mautic with HubSpot, use the following command:" -msgstr "" - -#: ../../set_up/cron_jobs.rst:294 b076420fbe60477cbacc4622ce3b262a -msgid "**To install, update, turn on or turn off Plugins:**" -msgstr "" - -#: ../../set_up/cron_jobs.rst:302 3f54cbab43fa4822996bcea7c7a956a6 -msgid "" -"you can replace ``mautic:plugins:reload`` with ``mautic:plugins:install`` or" -" ``mautic:plugins:update``. They're the same commands with different alias." -msgstr "" - -#: ../../set_up/cron_jobs.rst:306 6eb7134878d04b86bd7017efc616602e -msgid "Tips & troubleshooting" -msgstr "" - -#: ../../set_up/cron_jobs.rst:308 9172bf46e3d242b8b863f9a2d89681ca -msgid "" -"If your environment provides a command-line specific build of PHP, often " -"called ``php-cli``, you may want to use that instead of ``php`` as it has a " -"cleaner output. On BlueHost and probably some other PHP hosts, the ``php`` " -"command might be setup to discard the command-line parameters to " -"``console``, in which case you must use ``php-cli`` to make the cron jobs " -"work." -msgstr "" - -#: ../../set_up/cron_jobs.rst:310 bf529af4e7ac4ec8ba264ee722b5348a -msgid "" -"To assist in troubleshooting cron issues, you can pipe the output of each " -"cron job to a specific file by adding something like " -"``>>/path/to/somefile.log 2>&1`` at the end of the cron job, then you can " -"look at the contents of the file to see the output." -msgstr "" - -#: ../../set_up/cron_jobs.rst:312 526f638b8d4d4e00aacc54732f731723 -msgid "" -"If an error is occurring when running run the cron job this file provides " -"some insight, otherwise the file is empty or has some basic stats. The " -"modification time of the file informs you of the last time the cron job ran." -" You can thus use this to determine whether the cron job is running " -"successfully and on schedule." -msgstr "" - -#: ../../set_up/cron_jobs.rst:314 5fa09e9e32124d85b65dc859f50b67c0 -msgid "" -"In addition it's recommended to enable the non-interactive mode together " -"with the no-ansi mode when you run your commands using cron. This way you " -"ensure, that you have proper timestamps in your log and the output is more " -"readable." -msgstr "" - -#: ../../set_up/cron_jobs.rst:316 e7c1011f31d744ddab6329fc944e22ec -msgid "Example output" -msgstr "" - -#: ../../set_up/cron_jobs.rst:326 d994c7ec43354cb5af0603df88e00d52 -msgid "" -"If you have SSH access, try to run the command directly to Select for " -"errors. If there is nothing printed from either in a SSH session or in the " -"cron output, verify in the server's logs. If you see similar errors to " -"``'Warning: Invalid argument supplied for foreach()' in " -"/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287``," -" you either need to use ``php-cli`` instead of ``php`` or try using ``php -d" -" register_argc_argv=On``. `" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/set_up/maxmind_license.po b/docs/locale/zh_TW/LC_MESSAGES/set_up/maxmind_license.po deleted file mode 100644 index fd9dd63d..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/set_up/maxmind_license.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/maxmind_license.rst:2 1e41127c990342ad9fbb755f0cd6c53d -msgid "MaxMind license" -msgstr "" - -#: ../../set_up/maxmind_license.rst:4 7ea4e07e145c4dbaba9b52d91b5d2408 -msgid "" -"From the :xref:`2.16 release`, Mautic has supported using a license key to " -"access the MaxMind IP lookup service." -msgstr "" - -#: ../../set_up/maxmind_license.rst:8 d62755fdcc5c4e248e3ccca7ba4c5a5e -msgid "" -"From the 3.2 release the format for the license key needs to be " -"``AccountID:Licensekey``. You can locate the Account ID directly preceding " -"the license keys table." -msgstr "" - -#: ../../set_up/maxmind_license.rst:10 b64714b6fc694f6a8fe6de97709c686a -msgid "" -"Follow these steps to configure your Mautic instance to use the license key." -msgstr "" - -#: ../../set_up/maxmind_license.rst:12 ed23615a26ce4cb4a71e08f431d79661 -msgid "Create a MaxMind account by going to :xref:`MaxMind Signup`" -msgstr "" - -#: ../../set_up/maxmind_license.rst:14 0c8b6bd2d12a40858fb841143910ad48 -msgid "" -"After signing up, verify your Email and follow the steps to access your " -":xref:`MaxMind Account`." -msgstr "" - -#: ../../set_up/maxmind_license.rst:16 0e226c34a1a34c7b86bedcce59d19baa -msgid "Click the Contact icon at the top right of the menu to login" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone 0cc90dfdfa574775a53f6dcf821af5ee -msgid "Screenshot of MaxMind Account" -msgstr "" - -#: ../../set_up/maxmind_license.rst:22 46636eccc80845d4852168d69f67270d -msgid "" -"After logging in, under services click ``My License Key`` on the left hand " -"side in the menu" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ../../set_up/maxmind_license.rstNone -#: ../../set_up/maxmind_license.rstNone 5ce994a2a710468eb71009334cd5b69c -#: d2f19310e36c4e76ba09ca1a46b99f9a e6cbe305b501419794c81e9981420032 -msgid "Screenshot of MaxMind license key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:28 64a670b59bd44f379bcf6a5b8f3195fe -msgid "Then, Click ``Generate new License Key``" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone c4b1c8cd886c4fee88b98355ad7f8aee -msgid "Screenshot of MaxMind Generate key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:34 8002165a19734d7a9730433a3a75bec7 -msgid "Answer ``Will this key be used for GeoIP Update?`` with No and confirm" -msgstr "" - -#: ../../set_up/maxmind_license.rstNone ad142eb344774f68979d5be3c8dce641 -msgid "Screenshot of MaxMind confirm key" -msgstr "" - -#: ../../set_up/maxmind_license.rst:40 f27e91f7dbb94470ba3cd7796f940d77 -msgid "" -"Copy the license key that you see on the screen and note down the Account ID" -" preceding the license key table" -msgstr "" - -#: ../../set_up/maxmind_license.rst:46 7265f1cae6744134801f8573c5cd1a7a -msgid "" -"Go to Mautic > Settings > Configuration > System Settings > Miscellaneous " -"Settings and enter the license key into the \"IP lookup service " -"authentication\" **field in the format** ``AccountID:Licensekey``." -msgstr "" - -#: ../../set_up/maxmind_license.rst:52 b3fd79b5763349b18f849167d8e7f7e4 -msgid "" -"Click ``Fetch IP Lookup Data Store``. This downloads the IP lookup database " -"to your Mautic instance." -msgstr "" - -#: ../../set_up/maxmind_license.rst:54 329717f65998468785c23773679c23f2 -msgid "Set up the :ref:`cron jobs` to periodically download a fresh copy." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/set_up/switching_composer.po b/docs/locale/zh_TW/LC_MESSAGES/set_up/switching_composer.po deleted file mode 100644 index 8b44b6e5..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/set_up/switching_composer.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/switching_composer.rst:5 5c05c4562de04a82b0485354ea28c010 -msgid "How to switch to Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:9 1025de03053d42cea4623643a2cbb7a1 -msgid "" -"Until Mautic 4, you could download Mautic as a ZIP file and install it on " -"any PHP server. However, many Users were running into installation and " -"update errors, many of which caused considerable frustration and in some " -"cases, significant business disruption. Next to that, Mautic recently " -"introduced the :ref:`Mautic Marketplace` which isn't compatible with this " -"installation method." -msgstr "" - -#: ../../set_up/switching_composer.rst:12 d541ccbc01de422a9c04df21c81d221c -msgid "" -"For the reasons mentioned previously, from the release of Mautic 5, Composer" -" becomes the default way to install and update Mautic. Read more in " -":xref:`composer blog post`." -msgstr "" - -#: ../../set_up/switching_composer.rst:15 0c86e4e768ce4f589fa718c1ae7160f3 -msgid "How to switch to a Composer-based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:20 9c0ef16d73c442a39a0c26cd4e768308 -msgid "" -"Before starting, it's good to understand that there's two aspects to Mautic:" -msgstr "" - -#: ../../set_up/switching_composer.rst:18 180e5230747b44e4a41243f97972da0d -msgid "The database. This is where Mautic stores your Contact data." -msgstr "" - -#: ../../set_up/switching_composer.rst:20 ff4b50666519400d8c28023e7f22aa63 -msgid "The codebase. This is where Mautic interacts with the database.." -msgstr "" - -#: ../../set_up/switching_composer.rst:22 381a843a84914e6784825bf0dce8073a -msgid "" -"When switching to a Composer-based installation, the **database** isn't " -"touched, only the **codebase.**" -msgstr "" - -#: ../../set_up/switching_composer.rst:24 7ae4a498fc074656bf009321f939e483 -msgid "" -"In this tutorial, it's assumed that Mautic is currently installed in " -"``/var/www/html``." -msgstr "" - -#: ../../set_up/switching_composer.rst:26 4aa2aa89106046fb98a76e25ec179b08 -msgid "Here's the steps to follow to switch to a Composer-based installation:" -msgstr "" - -#: ../../set_up/switching_composer.rst:28 c49e4bba47b14954beb421b7b2a1e8bd -msgid "Go to ``/var/www``" -msgstr "" - -#: ../../set_up/switching_composer.rst:30 576005cbac5848648f904535e064001e -msgid "" -"Run ``composer create-project mautic/recommended-project:^4 html-new --no-" -"interaction``" -msgstr "" - -#: ../../set_up/switching_composer.rst:32 3b4fb820279342c7a5646481216fd87a -msgid "" -"Copy the following files and folders from ``/var/www/html`` to " -"``/var/www/html-new``:" -msgstr "" - -#: ../../set_up/switching_composer.rst:34 e485a2b53ea54b5bb94227fb5a5657e7 -msgid "" -"Configuration files - in most cases, located at ``app/config/local.php`` - " -"move to ``docroot/app/config/local.php``" -msgstr "" - -#: ../../set_up/switching_composer.rst:36 098ded71aa95482585cf50fb1f59c6e0 -msgid "The entire ``plugins`` directory - move to ``docroot/plugins``." -msgstr "" - -#: ../../set_up/switching_composer.rst:38 4dfff916d19a4ecb82c12795da981e1a -msgid "" -"Uploads - in most cases, located at ``app/media/files`` and " -"``app/media/images`` - move to ``docroot/app/media/files`` and " -"``docroot/app/media/images`` respectively" -msgstr "" - -#: ../../set_up/switching_composer.rst:40 36fe31a60cc04794a1b65b87a927d369 -msgid "" -"Custom dashboards from ``app/media/dashboards`` - move to " -"``docroot/app/media/dashboards``" -msgstr "" - -#: ../../set_up/switching_composer.rst:42 ed49c86aeb50431eab3790f6164bb656 -msgid "Any custom Themes from ``themes`` - move to ``/docroot/themes``" -msgstr "" - -#: ../../set_up/switching_composer.rst:44 f87391eadc0b4b85bcee2a5f07235403 -msgid "" -"Any translations from ``translations`` - move to ``/docroot/translations``" -msgstr "" - -#: ../../set_up/switching_composer.rst:46 5deca6144cf544d695d79734d416bf26 -msgid "" -"Rename ``/var/www/html`` to ``/var/www/html-old`` and ``/var/www/html-new`` " -"to ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:48 ff2822a95636424e82b8e0ccb8597dbf -msgid "" -"When you're done, update your web server configuration to point to " -"``/var/www/html/docroot`` instead of ``/var/www/html``" -msgstr "" - -#: ../../set_up/switching_composer.rst:50 df94dcc2151f4ca289a17f4bb6772d05 -msgid "" -"Log into Mautic, and in your global settings, enable the switch to fully " -"manage Mautic with Composer - this will also enable you to work with the " -"Mautic Marketplace." -msgstr "" - -#: ../../set_up/switching_composer.rstNone cc4b76e5731341f7963b16a02ebbca0f -msgid "Screenshot of switch enable Composer" -msgstr "" - -#: ../../set_up/switching_composer.rst:56 558548159d1f4edbbc09d465fb24d9d9 -msgid "" -"You have now switched to a Composer-based installation. Test if Mautic works" -" as expected." -msgstr "" - -#: ../../set_up/switching_composer.rst:61 79cdae8974d04c919c5c8ae42b560590 -msgid "Frequently Asked Questions (FAQs)" -msgstr "" - -#: ../../set_up/switching_composer.rst:63 8199e8da7987492e9808caba34764b22 -msgid "Q: Is existing data retained?" -msgstr "" - -#: ../../set_up/switching_composer.rst:65 de8563fd9daa46bf9a1332cdf2c0d36b -msgid "" -"A: Yes. Switching to the Composer-based installation only affects app files." -" Nothing happens to your data." -msgstr "" - -#: ../../set_up/switching_composer.rst:67 14eb3780b85f423c95a9035b27e153db -msgid "" -"Q: What's the minimum Mautic version required to switch to the Composer-" -"based installation?" -msgstr "" - -#: ../../set_up/switching_composer.rst:69 0889f273ded04c779aa8ddaa02ac2410 -msgid "" -"A: You need at least Mautic 4.0.0 for switching to the Composer-based " -"installation." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/set_up/tracking_script.po b/docs/locale/zh_TW/LC_MESSAGES/set_up/tracking_script.po deleted file mode 100644 index 30b93f94..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/set_up/tracking_script.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/tracking_script.rst:2 5653ab019a31433bba4296be99c0ee97 -msgid "Tracking script" -msgstr "" - -#: ../../set_up/tracking_script.rst:4 5a072b42af0b4519a380f8a97de76bb0 -msgid "" -"After installation and setup of the :doc:`/set_up/cron_jobs` you're ready to" -" begin tracking Contacts. You need to add a piece of JavaScript to the " -"websites for each site you wish to track through Mautic." -msgstr "" - -#: ../../set_up/tracking_script.rst:6 36bed433bfc94bdfac1594af7c5e09ca -msgid "" -"This is straightforward process, you can add this tracking script to your " -"website template file, or install a Mautic Integration for the more common " -"Content Management System platforms." -msgstr "" - -#: ../../set_up/tracking_script.rst:8 003513bfaccb4df5b521c48d88d287f5 -msgid "" -"Here is an example of the tracking JavaScript which you can access by " -"clicking on **Tracking Settings** in the Global Configuration." -msgstr "" - -#: ../../set_up/tracking_script.rst:19 a1dd9c07eee440d481e345d659583162 -msgid "" -"You should replace the site URL, ``example.com/mautic`` with the URL to your" -" Mautic instance in the example provided, but it's recommended to copy the " -"whole code block from the tracking settings in your Mautic instance." -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/set_up/variables.po b/docs/locale/zh_TW/LC_MESSAGES/set_up/variables.po deleted file mode 100644 index 995bde5b..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/set_up/variables.po +++ /dev/null @@ -1,929 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:19+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../set_up/variables.rst:2 303976272bd942e08cad82922fd04340 -msgid "Variables" -msgstr "" - -#: ../../set_up/variables.rst:5 48dcea43fed94f81a6eff31145729955 -msgid "Default Value" -msgstr "" - -#: ../../set_up/variables.rst:7 31b1c40c3fbd46fd9584f2f8fa6a43d0 -msgid "" -"The default value - sometimes called Fallback Text - is specified after the " -"``|`` character. Consider this Email salutation:" -msgstr "" - -#: ../../set_up/variables.rst:9 73d2702fb3aa47af90a9d473d248d0d7 -msgid "``Hi {contactfield=firstname|there},``" -msgstr "" - -#: ../../set_up/variables.rst:12 9a162d851d974a548c6bd513e3dacc32 -msgid "Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:14 4194199b930c4a98b089d9573f4e6069 -msgid "See managing custom fields for more information." -msgstr "" - -#: ../../set_up/variables.rst:20 ../../set_up/variables.rst:85 -#: ../../set_up/variables.rst:107 ../../set_up/variables.rst:150 -#: ../../set_up/variables.rst:171 ../../set_up/variables.rst:196 -#: ../../set_up/variables.rst:219 ../../set_up/variables.rst:242 -#: ../../set_up/variables.rst:257 ../../set_up/variables.rst:296 -#: c08b283681944639b15a7ab714646891 91fac86192b4453db7ca8a8b47435fce -#: de4ee849a6f0412a88ce2abaef9a37c8 d7f8016235de494899b3284ab3f16289 -#: 5b779490f6a44973ab5d24f3e24a86a1 ee85b7f3432c4c5c945541ba18aadd68 -#: c4440d64fc8a4d6abb24fbb0e469fcfc 3e179801b4ed4843888c78719b64aff5 -#: 0ffbc5c2571e4fe58d4e410d8cdf489c 45478adb2cf7444dad81854c995ac92b -msgid "Variable name" -msgstr "" - -#: ../../set_up/variables.rst:21 ../../set_up/variables.rst:86 -#: ../../set_up/variables.rst:108 ../../set_up/variables.rst:151 -#: ../../set_up/variables.rst:172 ../../set_up/variables.rst:197 -#: ../../set_up/variables.rst:220 ../../set_up/variables.rst:243 -#: ../../set_up/variables.rst:258 ../../set_up/variables.rst:297 -#: 5b85ea8cae1541ac97f36765b43d45b0 83ac01aa16824b33ac03234da90f8d3f -#: c33a4b0ea3f24b31af811af6de27544a cabfd03fee28435aad93ac3e97b6d45e -#: 735c60ddd45a400db49d6b169e2ba009 3fbc9784db844e96b4c7af0c54afdf79 -#: 33413a86cf4f40d1a15c16df1de0f083 295526656b284259a919ae14ae96b209 -#: 4f6e8f9439a94130906622877321b3c4 b74d1d4419e1407280cb5e1163c145e8 -msgid "Variable syntax" -msgstr "" - -#: ../../set_up/variables.rst:22 ../../set_up/variables.rst:310 -#: d5454efc0a684201a03456873bdc619d ef819d4f65bb4f689556a60f1ba0096e -msgid "Attribution" -msgstr "" - -#: ../../set_up/variables.rst:23 ../../set_up/variables.rst:311 -#: 12cff00fb21740159b3bd65645441d4c e7f687bf87e841188bfab14a081259b4 -msgid "``{contactfield=attribution}``" -msgstr "" - -#: ../../set_up/variables.rst:24 ../../set_up/variables.rst:312 -#: adaa844bd7014a78892c6a4a3327b51d 8750be9a04ab43afaa69dd1849d7509d -msgid "Attribution Date" -msgstr "" - -#: ../../set_up/variables.rst:25 ../../set_up/variables.rst:313 -#: 4eb2fd09ac9541acbe0b111b5c4b3ec9 35aed0bf04b14e33b370d8601da55e0e -msgid "``{contactfield=attribution_date}``" -msgstr "" - -#: ../../set_up/variables.rst:26 ../../set_up/variables.rst:298 -#: 0b03cef7e33548d386d6f2ae73684966 3f3338f3d82248d0b5d01f65710e232e -msgid "Address Line 1" -msgstr "" - -#: ../../set_up/variables.rst:27 ../../set_up/variables.rst:299 -#: ../../set_up/variables.rst:301 400fcbb6ce7e45cd9fca67e0fb4d6010 -#: 305de96dcd5f4f28ade2de434cb84a2b ac79d41c29684f4d8ae3bcfd2171fcde -msgid "``{contactfield=address1}``" -msgstr "" - -#: ../../set_up/variables.rst:28 ../../set_up/variables.rst:302 -#: f4786b2f2d6a491d8a5bfdec0841b69f 1bc3fb8db91040fab99db58e88249386 -msgid "Address Line 2" -msgstr "" - -#: ../../set_up/variables.rst:29 ../../set_up/variables.rst:303 -#: a554c3e08d134c82905235845e9b1217 2347ce0c9f384efaa110e35026320449 -msgid "``{contactfield=address2}``" -msgstr "" - -#: ../../set_up/variables.rst:30 ../../set_up/variables.rst:322 -#: 5f030708b85d4083944b27d68ad5af89 1c92cbfff9944d3dbb6e9f1eaf75cfb2 -msgid "Country" -msgstr "" - -#: ../../set_up/variables.rst:31 ../../set_up/variables.rst:323 -#: 04abb29c5e154318a2856d40a04a6808 db587d2a66d9410995d9ac8540e8bcff -msgid "``{contactfield=country}``" -msgstr "" - -#: ../../set_up/variables.rst:32 ../../set_up/variables.rst:318 -#: d46093335f1e494eb7d65a557cde6a80 d686b5fa9c0a4281a5e3b94f0dc5a0e1 -msgid "City" -msgstr "" - -#: ../../set_up/variables.rst:33 ../../set_up/variables.rst:319 -#: 2ae0800dc64b4cdaa9c17ec183ae7cc4 5bbd507825aa4ccb891875d4eb9ca16c -msgid "``{contactfield=city}``" -msgstr "" - -#: ../../set_up/variables.rst:34 ../../set_up/variables.rst:326 -#: 1945536c152e4093a12ec1554b404482 d8616a4f15df44f9b08d9500977df0ee -msgid "Company" -msgstr "" - -#: ../../set_up/variables.rst:35 ../../set_up/variables.rst:327 -#: 26da66ce046d46958d990d5e366314be 860ccdd2ba254ad09bda57e12560aa4a -msgid "``{contactfield=company}``" -msgstr "" - -#: ../../set_up/variables.rst:36 ../../set_up/variables.rst:328 -#: 97c0f20021c948c888c0fca6f411ac58 028451a55f7345e7a7756827c6eb7687 -msgid "Contact ID" -msgstr "" - -#: ../../set_up/variables.rst:37 ../../set_up/variables.rst:329 -#: af223090b46a4c31b208324f10c684a6 30bec46b58a14b009c800496ee4d7761 -msgid "``{contactfield=id}``" -msgstr "" - -#: ../../set_up/variables.rst:38 ../../set_up/variables.rst:91 -#: ../../set_up/variables.rst:334 1ef39ac4d41449f983384602815fd470 -#: 8065e744b0fe41edad6ae207c6dab46a aeb3f1b46d6f4933ad24a5bc31c6fba9 -msgid "Email" -msgstr "" - -#: ../../set_up/variables.rst:39 ../../set_up/variables.rst:335 -#: 68b9608f542a41febd2fee2daffbd8db 917946947a794202a1cf978da083d7d2 -msgid "``{contactfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:40 ../../set_up/variables.rst:338 -#: c6f82eb9a856471197700bac70dae2c9 062127d29d2b486d9c452dbd370abf67 -msgid "Facebook" -msgstr "" - -#: ../../set_up/variables.rst:41 ../../set_up/variables.rst:339 -#: 5434b93ff36040bfbeeb99627f87606e 985792bf2a104828a53d23e42b991bf4 -msgid "``{contactfield=facebook}``" -msgstr "" - -#: ../../set_up/variables.rst:42 ../../set_up/variables.rst:340 -#: 33d22a9c5f4a4d83b66bf9830ca29d35 0ad52c78e3ed449c9ccebad34b7ae4db -msgid "Fax" -msgstr "" - -#: ../../set_up/variables.rst:43 ../../set_up/variables.rst:341 -#: 9ca81fdcb74741eabc3a81da8378dcc7 4546eca3540d4d02b4db0c3620cc8683 -msgid "``{contactfield=fax}``" -msgstr "" - -#: ../../set_up/variables.rst:44 ../../set_up/variables.rst:87 -#: ../../set_up/variables.rst:348 ffe3c01c9b3943569287f79b975498b7 -#: 5a4d173bcd194a3fa5f932911313550a 8eaba03eb54a49aaa8f86880a9eda3f3 -msgid "First Name" -msgstr "" - -#: ../../set_up/variables.rst:45 ../../set_up/variables.rst:349 -#: d18d184f8c5c4a1caa9eb37920e3ddf0 76fb55bd4c324e2eb6884db561449644 -msgid "``{contactfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:46 ../../set_up/variables.rst:350 -#: 612af7eb8a8f42eb83a3663b1cd09ebf 01b876dd056041a28747280ef5d84c5c -msgid "Foursquare" -msgstr "" - -#: ../../set_up/variables.rst:47 ../../set_up/variables.rst:351 -#: 99040ebb24b64250b36ae443b5c49e79 ed878f46c43b42bebdfc46faa2c79888 -msgid "``{contactfield=foursquare}``" -msgstr "" - -#: ../../set_up/variables.rst:48 ../../set_up/variables.rst:352 -#: 29ad2ddabf0c49dcb3d687fb66121624 00dadee77a964c13a93cc3c810269dd1 -msgid "Google+" -msgstr "" - -#: ../../set_up/variables.rst:49 ../../set_up/variables.rst:353 -#: 5ba6139e465b49518cb52083ddcb333d 86cd71014c4b4a3a846d205d2f64a517 -msgid "``{contactfield=googleplus}``" -msgstr "" - -#: ../../set_up/variables.rst:50 ../../set_up/variables.rst:354 -#: 5d3989740d4c468ca32572d264b720f4 26be2a43de804886b0e208129cd9cc6c -msgid "Instagram" -msgstr "" - -#: ../../set_up/variables.rst:51 ../../set_up/variables.rst:355 -#: 4c5450361fbf4c7c9ded16fa34cde8ce 5234e66ef4a04d64acb78b1a86529234 -msgid "``{contactfield=instagram}``" -msgstr "" - -#: ../../set_up/variables.rst:52 ../../set_up/variables.rst:356 -#: 12db4c1191da4b4f91116614bc494bcc 4cb75be8554b4a3792535f8ad32ec490 -msgid "IP Address" -msgstr "" - -#: ../../set_up/variables.rst:53 ../../set_up/variables.rst:357 -#: 8ecb5688db2d4a0580e9d878edc098e5 620a3afb08ed4111b86fd5afb79dd049 -msgid "``{contactfield=ipAddress}``" -msgstr "" - -#: ../../set_up/variables.rst:54 ../../set_up/variables.rst:89 -#: ../../set_up/variables.rst:362 96501e9a754a492aab703a57bb7dc8e7 -#: ef26f2dc5ba745eca5317764ce393142 3a209c5f4ac148e68c64e6b80b0d95a3 -msgid "Last Name" -msgstr "" - -#: ../../set_up/variables.rst:55 ../../set_up/variables.rst:363 -#: 6ec976fbd2e1434fa295b31f83d44221 1f6e838497ce4e2aba3424f36bea51df -msgid "``{contactfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:56 ../../set_up/variables.rst:366 -#: c2842dc6fb2a4999adc9963e05c79cdd d2d7fa3ae1644208994f2f4b7a6edd95 -msgid "LinkedIn" -msgstr "" - -#: ../../set_up/variables.rst:57 ../../set_up/variables.rst:367 -#: 88c5dd3ab853455bbca85938d82caec6 96106326d66c4552884523f115941532 -msgid "``{contactfield=linkedin}``" -msgstr "" - -#: ../../set_up/variables.rst:58 ../../set_up/variables.rst:370 -#: cf99207cd516493fa31d667f437ad103 e5110ebfe2fc463cb2b80423c0e6e4b2 -msgid "Mobile Number" -msgstr "" - -#: ../../set_up/variables.rst:59 ../../set_up/variables.rst:371 -#: 5dc6ed27ee6f4ff4ab995fd4760cf501 b72a82a9638e422fa3dee404fc64bbc0 -msgid "``{contactfield=mobile}``" -msgstr "" - -#: ../../set_up/variables.rst:60 ../../set_up/variables.rst:376 -#: d64bcf3189d7403a90c24e2bd47c0063 5baa38ddf6d7490f88a633fe02935421 -msgid "Phone Number" -msgstr "" - -#: ../../set_up/variables.rst:61 ../../set_up/variables.rst:377 -#: fdca5bdbf14946bbb164eceb6afba1f3 ad7f524edd1444a88be0cf28803a42c9 -msgid "``{contactfield=phone}``" -msgstr "" - -#: ../../set_up/variables.rst:62 ../../set_up/variables.rst:93 -#: ../../set_up/variables.rst:380 5ee86e0dd229462395266ea9976a21b4 -#: 39c311ef1a834f9a96d734735547be4a 6bcec76483fc49e49d25f970de46ee3d -msgid "Position" -msgstr "" - -#: ../../set_up/variables.rst:63 ../../set_up/variables.rst:381 -#: deac9130441c4209b89d2d01e41c2f3b f7cd83f48da14e57abe156151f7f8d4c -msgid "``{contactfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:64 ../../set_up/variables.rst:388 -#: 86b5ba40e182453a98e8290533049af8 ed34f3bc508b433ea71f4fff51e4c77e -msgid "Skype" -msgstr "" - -#: ../../set_up/variables.rst:65 ../../set_up/variables.rst:389 -#: aa56b965783a4671b5ad09f729772a1d e068fb8f60ca4f1c98f6e85b1cb6146c -msgid "``{contactfield=skype}``" -msgstr "" - -#: ../../set_up/variables.rst:66 ../../set_up/variables.rst:390 -#: 175ba88b53a143f8ad69075143cba533 fa0e6f243f2140b38a785f96e48a286e -msgid "State" -msgstr "" - -#: ../../set_up/variables.rst:67 ../../set_up/variables.rst:391 -#: b631495db758435a886eed326dbf1cff 36b067723a194690b5570374386480c6 -msgid "``{contactfield=state}``" -msgstr "" - -#: ../../set_up/variables.rst:68 ../../set_up/variables.rst:396 -#: 0a88c1557e294765a2d2d022803d25b6 0f5714322eab4a22a6570aa64958de68 -msgid "Twitter" -msgstr "" - -#: ../../set_up/variables.rst:69 ../../set_up/variables.rst:397 -#: 2a2b7ce6ca824db49632fc088f16787c e805c21e098e46379c98e2c6646499aa -msgid "``{contactfield=twitter}``" -msgstr "" - -#: ../../set_up/variables.rst:70 ../../set_up/variables.rst:200 -#: ../../set_up/variables.rst:261 ../../set_up/variables.rst:404 -#: 1cc23791a9d14fd68227a3de249ecd84 fcbe359a73ed4e4d80925598dd0c6f47 -#: fb409b7e10204eb28ab26a48275fe050 62510622434f42efad53a378ffab5664 -msgid "Title" -msgstr "" - -#: ../../set_up/variables.rst:71 ../../set_up/variables.rst:405 -#: ea5be47e9cce4914af0b742660ce9146 026756d5363c4af0a868473e02d79905 -msgid "``{contactfield=title}``" -msgstr "" - -#: ../../set_up/variables.rst:72 ../../set_up/variables.rst:412 -#: 58236716a3b546929f848836cbd50059 81b0bd5055b34c68a68fd553a0484e59 -msgid "Website" -msgstr "" - -#: ../../set_up/variables.rst:73 ../../set_up/variables.rst:413 -#: 8549fec1b27643faa7976eaa7afae70b 2f23d47fad294a178d048d68a3c85f8a -msgid "``{contactfield=website}``" -msgstr "" - -#: ../../set_up/variables.rst:74 ../../set_up/variables.rst:420 -#: 7cb24322f5584947a58a1d94f7e24b44 9825dbd95ab241769c86e2ed0d659877 -msgid "Zip Code" -msgstr "" - -#: ../../set_up/variables.rst:75 ../../set_up/variables.rst:421 -#: 22a38b802bbd43d4873047c896256ae5 d6393ea8e81d4653909e130699b794de -msgid "``{contactfield=zipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:78 56e242a76de84dd8855cad7b1ea0b04d -msgid "Contact Owner fields" -msgstr "" - -#: ../../set_up/variables.rst:88 3a2d1c801e9146c18aecfa9e3acb9f6a -msgid "``{ownerfield=firstname}``" -msgstr "" - -#: ../../set_up/variables.rst:90 7e34630fa8b8402f82a1392fcd8c36e1 -msgid "``{ownerfield=lastname}``" -msgstr "" - -#: ../../set_up/variables.rst:92 d31cb7df62114c2ea1c73326e65e17ef -msgid "``{ownerfield=email}``" -msgstr "" - -#: ../../set_up/variables.rst:94 8a7c75630d3d4d6dbe4d19778ab4dca7 -msgid "``{ownerfield=position}``" -msgstr "" - -#: ../../set_up/variables.rst:95 ../../set_up/variables.rst:173 -#: ../../set_up/variables.rst:386 268243fb23a34876b07af1f6229e8e3e -#: 21f1c0c062b544e0a3a28e2d242c1f43 e362679137b64211950135f746bf9f1e -msgid "Signature" -msgstr "" - -#: ../../set_up/variables.rst:96 47f57e1825a74b6ba88015af4268245b -msgid "``{ownerfield=signature}``" -msgstr "" - -#: ../../set_up/variables.rst:99 d876566c6a4e4beaa38f90763813c701 -msgid "Company Contact fields" -msgstr "" - -#: ../../set_up/variables.rst:101 53a8bea9eab14d5891a3c4c71a1b2510 -msgid "See Companies for more information." -msgstr "" - -#: ../../set_up/variables.rst:109 ../../set_up/variables.rst:300 -#: 02c35ae509c54ce3b1fbbeaa7577a2fe ac26e9102d8748eb9fddd54f0fcfc448 -msgid "Address Line 1 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:110 f17432245f364b5b9bf4f9dc364474f6 -msgid "``{contactfield=companyaddress1}``" -msgstr "" - -#: ../../set_up/variables.rst:111 ../../set_up/variables.rst:304 -#: a98aa43fcbe84dff8709082af7455ac9 3e8cbb7738c34e8cbfdcecf63e201be2 -msgid "Address Line 2 (Company)" -msgstr "" - -#: ../../set_up/variables.rst:112 ../../set_up/variables.rst:305 -#: 502d55a8a3804c75ae0bb073edd4f6c6 2dd5f97cd31d49bd9b8966c0a55d12f0 -msgid "``{contactfield=companyaddress2}``" -msgstr "" - -#: ../../set_up/variables.rst:113 ../../set_up/variables.rst:306 -#: 1780c2261a974a6cab2c967bdbbeb80a 0e28da9c12244b4daa06bdef53a8bfb6 -msgid "Annual Revenue (Company)" -msgstr "" - -#: ../../set_up/variables.rst:114 ../../set_up/variables.rst:307 -#: be2aea5d6f554ac8ab0e2064d832fe2e 3d0564fc96724284a79a0e4a3fb0ef55 -msgid "``{contactfield=companyannual_revenue}``" -msgstr "" - -#: ../../set_up/variables.rst:115 ../../set_up/variables.rst:320 -#: 78214f04dd1942d28d24174a24f088d1 602963d826f24b6b980484b49995df60 -msgid "City (Company)" -msgstr "" - -#: ../../set_up/variables.rst:116 ../../set_up/variables.rst:321 -#: cb97cd2835ad41aeab540727d156b5da 0415874757e7475a9790d54b0a06b085 -msgid "``{contactfield=companycity}``" -msgstr "" - -#: ../../set_up/variables.rst:117 ../../set_up/variables.rst:324 -#: 098ab88063174ff9a6ce661ce40a041a 2bcf8598faf94cb8afaee3db55ea54ba -msgid "Country (Company)" -msgstr "" - -#: ../../set_up/variables.rst:118 ../../set_up/variables.rst:325 -#: 13ac79559f63433894fd5ab6f7ff7aa0 b84b46dd5e2a43bfa7d00b042d602292 -msgid "``{contactfield=companycountry}``" -msgstr "" - -#: ../../set_up/variables.rst:119 ../../set_up/variables.rst:330 -#: 9cda5d77318f49e8883692de1b88fb87 ded3e8a1dc234bb389f82e2704a90257 -msgid "Description (Company)" -msgstr "" - -#: ../../set_up/variables.rst:120 ../../set_up/variables.rst:331 -#: 6ffd6ee5962d4c69b3c51f9b61a75f0a acb0a52484ad46818be0a540b084b0c3 -msgid "``{contactfield=companydescription}``" -msgstr "" - -#: ../../set_up/variables.rst:121 ../../set_up/variables.rst:336 -#: fa7d6d699edf4112965f9c019ca38b99 909e3c54035b4c55873c9b7ba2e93191 -msgid "Email (Company)" -msgstr "" - -#: ../../set_up/variables.rst:122 ../../set_up/variables.rst:337 -#: 92ededeb83704f138b69e1cf2f0c5919 317c190bef554e9c9dd985c98e40e499 -msgid "``{contactfield=companyemail}``" -msgstr "" - -#: ../../set_up/variables.rst:123 ../../set_up/variables.rst:346 -#: 1111cde5832e4bc4b98365dbb152371f c669a9bd1ed94ad082ecf9b978dd7fc9 -msgid "Fax (Company)" -msgstr "" - -#: ../../set_up/variables.rst:124 ../../set_up/variables.rst:347 -#: a53d971b9621489e927e708b6b920d38 6add3ebee31748cd8b3694bdae277beb -msgid "``{contactfield=companyfax}``" -msgstr "" - -#: ../../set_up/variables.rst:125 eeb31a2074444a6c94c0f69ee4062cbc -msgid "Industry (Company)" -msgstr "" - -#: ../../set_up/variables.rst:126 340f3d7853d4451b9448e43e321b119e -msgid "``{contactfield=companyindustry}``" -msgstr "" - -#: ../../set_up/variables.rst:127 d7b4de072b8f44fd9f3f5a76452c8ab2 -msgid "Name" -msgstr "" - -#: ../../set_up/variables.rst:128 ../../set_up/variables.rst:373 -#: f59a5f89006344609717f03d4c8f6a04 595255cf8d1d459ca91d02c1e5733530 -msgid "``{contactfield=companyname}``" -msgstr "" - -#: ../../set_up/variables.rst:129 ../../set_up/variables.rst:374 -#: a70e593342e74d28ab6d04438b045ec8 4d4d7750d4da484cbcd6d551486a845c -msgid "Number of Employees (Company)" -msgstr "" - -#: ../../set_up/variables.rst:130 ../../set_up/variables.rst:375 -#: 0d62f8306cd94c29a5124d22a49f79e8 7b307bd9e2214986b053cb6779340643 -msgid "``{contactfield=companynumber_of_employees}``" -msgstr "" - -#: ../../set_up/variables.rst:131 ../../set_up/variables.rst:378 -#: 5908cad2ffdd44d9bf2cb317cc17ba61 437c4cfaad7a431faacba2df8f1ae909 -msgid "Phone Number (Company)" -msgstr "" - -#: ../../set_up/variables.rst:132 ../../set_up/variables.rst:379 -#: 06fc6c58e23c4985b1ef542493010f73 5332e41ecb53433d853e5d0ad5a8731c -msgid "``{contactfield=companyphone}``" -msgstr "" - -#: ../../set_up/variables.rst:133 ../../set_up/variables.rst:392 -#: 2fb757d72a8f44ab85bcf664519a0a90 ff0093c3dc19435faa633c2fc601284c -msgid "State (Company)" -msgstr "" - -#: ../../set_up/variables.rst:134 ../../set_up/variables.rst:393 -#: bdffb1980ca84c4992fa39c3ecc4c971 86d71fbefde64bd2a1f8e5da7091e9b2 -msgid "``{contactfield=companystate}``" -msgstr "" - -#: ../../set_up/variables.rst:135 ../../set_up/variables.rst:414 -#: 54051762e7af47a7a8558109a6d8d8a2 3851a6bc12e147b791d2858b285ed7c4 -msgid "Website (Company)" -msgstr "" - -#: ../../set_up/variables.rst:136 ../../set_up/variables.rst:415 -#: b409dd93346f4432ad2b2f660651089d 9ab4a98ed75241768aee434227e823b6 -msgid "``{contactfield=companywebsite}``" -msgstr "" - -#: ../../set_up/variables.rst:137 ../../set_up/variables.rst:422 -#: 0f5c18c50e594c3788bf632ddfc1e9e6 c432e80bc15445a0965b624f29f4820a -msgid "Zip Code (Company)" -msgstr "" - -#: ../../set_up/variables.rst:138 ../../set_up/variables.rst:423 -#: 28fa0d686149441f89fc3a684a0753a3 f061acc44c984db49af4216c3a4048e4 -msgid "``{contactfield=companyzipcode}``" -msgstr "" - -#: ../../set_up/variables.rst:141 ab3b0b16e78248f4b039dd600c532472 -msgid "Mautic Component tokens" -msgstr "" - -#: ../../set_up/variables.rst:143 350b352d3afe4f449b60375038d01f81 -msgid "See Components and Manage Pages for more information." -msgstr "" - -#: ../../set_up/variables.rst:152 775d5e1cb788436ba6bd9f5a39b898fa -msgid "Asset link for asset id#" -msgstr "" - -#: ../../set_up/variables.rst:153 ../../set_up/variables.rst:309 -#: fe9053db302e446c9dd6bdf96abb5c07 6deca6e07f8c42a499124812b8b5565d -msgid "``{assetlink=25}``" -msgstr "" - -#: ../../set_up/variables.rst:154 ../../set_up/variables.rst:342 -#: 5d9e55002f8447848bb32f4320950b4c 680650a505c44e8099a9a947bbf39692 -msgid "Focus Item id#" -msgstr "" - -#: ../../set_up/variables.rst:155 ../../set_up/variables.rst:343 -#: 98cc43b2fa1b48ada4ad9d1fc1d85de7 1fe7e1093e674d799250b6f2caa9c3d9 -msgid "``{focus=4}``" -msgstr "" - -#: ../../set_up/variables.rst:156 ../../set_up/variables.rst:344 -#: ccbe2fd134fc406b83e589082b14d314 05f32b9002f146468b517cef6f49ac77 -msgid "Form id#" -msgstr "" - -#: ../../set_up/variables.rst:157 ../../set_up/variables.rst:345 -#: 4f22898f30fe4be4a8c9e9b853698898 482a8cd427ff48d79c44d4a317cf0cd4 -msgid "``{form=83}``" -msgstr "" - -#: ../../set_up/variables.rst:158 ../../set_up/variables.rst:358 -#: 4d02147386614017927d182b24a18d06 a18720e64cf240f2a01c527ac908233f -msgid "Landing Page link for page id#" -msgstr "" - -#: ../../set_up/variables.rst:159 ../../set_up/variables.rst:359 -#: 6b717df9b6114e28b58d2a58fdc2f7ab 549b4904c5d6408eb060cd823d6c2cbd -msgid "``{pagelink=17}``" -msgstr "" - -#: ../../set_up/variables.rst:162 15807be6567b42f9b1458aa0648421f0 -msgid "Email specific tokens" -msgstr "" - -#: ../../set_up/variables.rst:164 87f8c95cd22a4da490906f576a1144e8 -msgid "See :ref:`Manage Emails` for more information." -msgstr "" - -#: ../../set_up/variables.rst:174 ../../set_up/variables.rst:387 -#: 176c2e8091fd41779967a5a229f7c6af ab80980f76b7497b84f3405dfdaf2864 -msgid "``{signature}``" -msgstr "" - -#: ../../set_up/variables.rst:175 ../../set_up/variables.rst:394 -#: 143d8468c0884dc4bb8d3f7187cc6ef4 c04f79ae72a74ff5b3e4356462f4411c -msgid "Subject" -msgstr "" - -#: ../../set_up/variables.rst:176 ../../set_up/variables.rst:395 -#: e231a359094747f7aba19f369e9b6eb0 24518a4fedc74b2fa01a60c3b581713d -msgid "``{subject}``" -msgstr "" - -#: ../../set_up/variables.rst:177 ../../set_up/variables.rst:271 -#: e8feb903e939451ba48b7b78cb8a9068 d5e863456333408295b9478820caaee2 -msgid "Tracking pixel" -msgstr "" - -#: ../../set_up/variables.rst:178 ../../set_up/variables.rst:272 -#: fff7218236364e15991f385587d465ef 4a77d23e48fd4ef9a0fc0ea4b820df1c -msgid "``{tracking_pixel}``" -msgstr "" - -#: ../../set_up/variables.rst:179 ../../set_up/variables.rst:408 -#: a99be4621c7f4d18835e6827514cd02c 8f2d0c860d2a48e7954daa413201987f -msgid "Unsubscribe Text" -msgstr "" - -#: ../../set_up/variables.rst:180 ../../set_up/variables.rst:409 -#: efd45b997b3646069e23041a1a7c4fde c58c8e82126c45b6907582eaf275b8dd -msgid "``{unsubscribe_text}``" -msgstr "" - -#: ../../set_up/variables.rst:181 ../../set_up/variables.rst:416 -#: bae8decd074e404db6d52cd9c03cc18b c09905a6701c435c9699fc2f7bcd8e79 -msgid "Web View Text" -msgstr "" - -#: ../../set_up/variables.rst:182 ../../set_up/variables.rst:417 -#: 7d4995144a3e4a01997c918f6967615c 17f2bd8bab6340e0bb32c3b68fce5b8f -msgid "``{webview_text}``" -msgstr "" - -#: ../../set_up/variables.rst:183 ../../set_up/variables.rst:418 -#: 2a4e8f7da09c48389ca07d4b0626dcb1 fdd8ee464a354c1e86c03db74e396b1e -msgid "Web View URL" -msgstr "" - -#: ../../set_up/variables.rst:184 86f2677239a843a488dc3e33b4332e2d -msgid "``{webview_url}``" -msgstr "" - -#: ../../set_up/variables.rst:187 639142992db8467991b6305da414e24e -msgid "Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:189 66a41a1deac24df7a50d4f5ca2b77ef9 -msgid "See :doc:`/components/landing_pages` for more information." -msgstr "" - -#: ../../set_up/variables.rst:198 9c2b12e7f42246788e0f3ad2e82e64ac -msgid "Meta Description" -msgstr "" - -#: ../../set_up/variables.rst:199 ../../set_up/variables.rst:369 -#: fd8cc903a23f4e2583af58f289ba799a c29b04182a444d30a02cd19ff3d5c978 -msgid "``{pagemetadescription}``" -msgstr "" - -#: ../../set_up/variables.rst:201 ../../set_up/variables.rst:407 -#: e94ea4b41f1c4fd9877d16ccf7983250 1f5b5f6fcf1349b29d0d711c0d25bc2a -msgid "``{pagetitle}``" -msgstr "" - -#: ../../set_up/variables.rst:202 ../../set_up/variables.rst:360 -#: 3fddd02c56c14cac9a68d27b4a300c9c 90f8c3d739c14797a528b9d5ca54bfd9 -msgid "Language bar" -msgstr "" - -#: ../../set_up/variables.rst:203 ../../set_up/variables.rst:361 -#: 168cdae8d70b4d019d28834e2d67804d 20832d77a0674538b2ee993e37f0933e -msgid "``{langbar}``" -msgstr "" - -#: ../../set_up/variables.rst:204 ../../set_up/variables.rst:400 -#: 83f9fc36ac5e477b9ab91ba587dc552b 7928bd2d075a4d418e1c881d874a8311 -msgid "Share Buttons" -msgstr "" - -#: ../../set_up/variables.rst:205 ../../set_up/variables.rst:401 -#: d86b3ed1d6ae45a7ae28c230698c9c48 8583ce51b99d4c739408d4ef7b61e2e2 -msgid "``{sharebuttons}``" -msgstr "" - -#: ../../set_up/variables.rst:206 ../../set_up/variables.rst:402 -#: 0f420f9583e7431183033ae597c2cdc9 654af80f103743ed81ab2ddd6e6ec1d9 -msgid "Success Message" -msgstr "" - -#: ../../set_up/variables.rst:207 ../../set_up/variables.rst:403 -#: 4ca2becf82ba46c6b70713e6c96fdbc7 9d8ccc55a6ee45edae4075cae368fe9b -msgid "``{successmessage}``" -msgstr "" - -#: ../../set_up/variables.rst:210 17dd071ea5d6478fb5a99276d8ca7370 -msgid "Preference Center Landing Page tokens" -msgstr "" - -#: ../../set_up/variables.rst:212 e716a897b14f4cfb840d6f603a43e355 -msgid "" -"See :ref:`customizing preference center` " -"for more information." -msgstr "" - -#: ../../set_up/variables.rst:221 eb4d853c99f24641a221d9505de4e5f3 -msgid "Lead Identifier" -msgstr "" - -#: ../../set_up/variables.rst:222 ../../set_up/variables.rst:365 -#: abc2bb8777544dcebbb4c62070ae607e 6caed85eba114799a2b0cc30da64fa66 -msgid "``{leadidentifier}``" -msgstr "" - -#: ../../set_up/variables.rst:223 81f7aecbef3e4a418c8598c8557c45f6 -msgid "Category List" -msgstr "" - -#: ../../set_up/variables.rst:224 ../../set_up/variables.rst:315 -#: f2df37da86714a50ac8c3751cacf6e83 2c2341e7ff8a490c9c5724857cbe89d1 -msgid "``{categorylist}``" -msgstr "" - -#: ../../set_up/variables.rst:225 33cfd2f2f7b64f549be738b72cf58552 -msgid "Segment List" -msgstr "" - -#: ../../set_up/variables.rst:226 ../../set_up/variables.rst:385 -#: 65a40e1ae1ca47d38b23671fcb900531 7dd93315167144b9be5e49dcec6a8716 -msgid "``{segmentlist}``" -msgstr "" - -#: ../../set_up/variables.rst:227 9f266ca5cb124bee8a4fdee99f9386ab -msgid "Preferred Channel" -msgstr "" - -#: ../../set_up/variables.rst:228 ../../set_up/variables.rst:399 -#: 66a5bd4c422848c195040485c61f86d9 ae33d7ddf8be4b699b59d901c65e0cb7 -msgid "``{preferredchannel}``" -msgstr "" - -#: ../../set_up/variables.rst:229 7ebac2f6cc644a27afdcc25ba31f523d -msgid "Channel Frequency" -msgstr "" - -#: ../../set_up/variables.rst:230 ../../set_up/variables.rst:317 -#: dd3118d692794677b90c3d5951f08901 d5edde0152504ef5b842ad0c0cc34ce8 -msgid "``{channelfrequency}``" -msgstr "" - -#: ../../set_up/variables.rst:231 d5a3c1c5c1144dbea2edad359f74fa2a -msgid "Save Preferences" -msgstr "" - -#: ../../set_up/variables.rst:232 ../../set_up/variables.rst:383 -#: 81a5ec56031e43abbd74ede83bec6497 fbe865acb174475fb7fa97b0c15487aa -msgid "``{saveprefsbutton}``" -msgstr "" - -#: ../../set_up/variables.rst:235 3a1836d1428e4b7bbd9268ee7c6fd78e -msgid "Dynamic Web Content tokens" -msgstr "" - -#: ../../set_up/variables.rst:244 d4a33c6b3a7c42f7b07d4c3c48fc1611 -msgid "[Dynamic Content 1] | for example User-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:245 ../../set_up/variables.rst:333 -#: 74faea7048134fe782a769bf4119dcd3 c8d67370cf344ec983a1c64e5808bdb9 -msgid "``{dynamiccontent=\"Dynamic Content 1\"}``" -msgstr "" - -#: ../../set_up/variables.rst:248 36f19b7665704d24bbba5f74cd96bb5a -msgid "Contact Monitoring" -msgstr "" - -#: ../../set_up/variables.rst:250 8e61fae1c28d4e52997c6ebaf6b3c3de -msgid "See :ref:`Contact Monitoring` for more information." -msgstr "" - -#: ../../set_up/variables.rst:259 ade17d07740c4dea9f699f9e65b55008 -msgid "Language" -msgstr "" - -#: ../../set_up/variables.rst:260 15dcb088a89c4ecb8e18811875b7a47c -msgid "``{language}``" -msgstr "" - -#: ../../set_up/variables.rst:262 3eeb0b4ac37b4af09e640534fe9a7f12 -msgid "``{title}``" -msgstr "" - -#: ../../set_up/variables.rst:263 deb82f10b4dd41e1a6e2ae19e2dc1cdb -msgid "Landing Page Title" -msgstr "" - -#: ../../set_up/variables.rst:264 7ba85a8074dd415eb259a5633c631cae -msgid "``{page_title}``" -msgstr "" - -#: ../../set_up/variables.rst:265 4bb687d1dd8a48d8b7c15bea0f5312ed -msgid "URL" -msgstr "" - -#: ../../set_up/variables.rst:266 d61f285c134745d18f719f43b1d90fa2 -msgid "``{url}``" -msgstr "" - -#: ../../set_up/variables.rst:267 c5b86cfb03e945b380495a91f6844c90 -msgid "Landing Page URL" -msgstr "" - -#: ../../set_up/variables.rst:268 a7b1cc37d7b64b528edd358c8a5d340a -msgid "``{page_url}``" -msgstr "" - -#: ../../set_up/variables.rst:269 c844cec2e8a94c7eb2fc498e800b9a55 -msgid "Referrer" -msgstr "" - -#: ../../set_up/variables.rst:270 33a5df05569445efa33e0d4a8ff26a26 -msgid "``{referrer}``" -msgstr "" - -#: ../../set_up/variables.rst:273 93dc017a454941788ad966b9c087ef36 -msgid "UTM Campaign" -msgstr "" - -#: ../../set_up/variables.rst:274 6fbda66ecbbf430385ea91220cb7e326 -msgid "``{utm_campaign}``" -msgstr "" - -#: ../../set_up/variables.rst:275 a2998872d7634b0a8c30b40f8b172e67 -msgid "UTM Content" -msgstr "" - -#: ../../set_up/variables.rst:276 929306f433b34053a804e3a577b32405 -msgid "``{utm_content}``" -msgstr "" - -#: ../../set_up/variables.rst:277 91a5b08787514a1ca6eacc72c651abcf -msgid "UTM Medium" -msgstr "" - -#: ../../set_up/variables.rst:278 c70bfa1fae17439d87ad8e4d215a8553 -msgid "``{utm_medium}``" -msgstr "" - -#: ../../set_up/variables.rst:279 36bf40efe31d4ad3aff72ed62b050812 -msgid "UTM Source" -msgstr "" - -#: ../../set_up/variables.rst:280 bff0fdc9dc814a60a51e45799e64f512 -msgid "``{utm_source}``" -msgstr "" - -#: ../../set_up/variables.rst:281 f77803f5ef144c8cb9b102a50a371207 -msgid "UTM Term" -msgstr "" - -#: ../../set_up/variables.rst:282 6f68006ad6984bda8bf5709af2d5da36 -msgid "``{utm_term}``" -msgstr "" - -#: ../../set_up/variables.rst:285 6f6e00e5a43740ebb6effed4f28e2098 -msgid "Search filters" -msgstr "" - -#: ../../set_up/variables.rst:287 d9156ca16fdb4d4c820ea99bee4b2595 -msgid "See the :ref:`Search` page for more information." -msgstr "" - -#: ../../set_up/variables.rst:290 9649d60662894565b28672e6f5da5cd1 -msgid "Alphabetical list" -msgstr "" - -#: ../../set_up/variables.rst:308 ab6ef45686dc4651b67958b53e0fd108 -msgid "Asset link for Asset id#" -msgstr "" - -#: ../../set_up/variables.rst:314 c74d5155330d471d8f99403fa8f801ab -msgid "Category List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:316 76725c4669a246ce97053bee314efb6e -msgid "Channel Frequency (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:332 6edd3b19aacb4836aef940e2d2cfdb87 -msgid "[Dynamic Content 1]for example: user-defined variable name" -msgstr "" - -#: ../../set_up/variables.rst:364 695456b6276d4180bca8c95dd22a2551 -msgid "Contact Identifier (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:368 fa307e6a0bb54530b3bf63d6e574316c -msgid "Meta Description (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:372 2920276c5cff44efb6debfb0cb3e584e -msgid "Name (Company)" -msgstr "" - -#: ../../set_up/variables.rst:382 b7084252b6e943349adfc484e6f3dd78 -msgid "Save Preferences (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:384 086fd70ac9eb4ea2900bb904d5b94a29 -msgid "Segment List (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:398 c9ed48978acc4e268fc11faa176200b9 -msgid "Preferred Channel (Preference Center)" -msgstr "" - -#: ../../set_up/variables.rst:406 693e743dfae14ec891c94e15e9963128 -msgid "Title (Landing Page)" -msgstr "" - -#: ../../set_up/variables.rst:410 7c174574757d4940b2956998972b5fe8 -msgid "Unsubscribe URL" -msgstr "" - -#: ../../set_up/variables.rst:411 1352bbc5252b48ae981770f83e494636 -msgid "``{unsubscribe_url}``" -msgstr "" - -#: ../../set_up/variables.rst:419 ed695808a4a647c28dbe327189402a2b -msgid "``{{webview_url}``" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/stages/stages.po b/docs/locale/zh_TW/LC_MESSAGES/stages/stages.po deleted file mode 100644 index 8c11b6bb..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/stages/stages.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../stages/stages.rst:4 5840c19d18254b06a812df43c8c5987d -msgid "Stages" -msgstr "" diff --git a/docs/locale/zh_TW/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po b/docs/locale/zh_TW/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po deleted file mode 100644 index 8050b84f..00000000 --- a/docs/locale/zh_TW/LC_MESSAGES/troubleshooting/file_ownership_and_permissions.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Mautic -# This file is distributed under the same license as the Mautic Documentation package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Mautic Documentation 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-29 17:47+0100\n" -"PO-Revision-Date: 2022-09-29 17:18+0000\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/mautic/teams/33223/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ../../troubleshooting/file_ownership_and_permissions.rst:4 -#: aed141fe4d7547ca992a2870bb138338 -msgid "File ownership and permissions" -msgstr "" diff --git a/docs/points/images/campaign-point-action-with-group.png b/docs/points/images/campaign-point-action-with-group.png new file mode 100644 index 00000000..4a8a6837 Binary files /dev/null and b/docs/points/images/campaign-point-action-with-group.png differ diff --git a/docs/points/images/campaign-point-condition-with-group.png b/docs/points/images/campaign-point-condition-with-group.png new file mode 100644 index 00000000..ab76c08d Binary files /dev/null and b/docs/points/images/campaign-point-condition-with-group.png differ diff --git a/docs/points/images/contact-group-points.png b/docs/points/images/contact-group-points.png new file mode 100644 index 00000000..ce3ffc43 Binary files /dev/null and b/docs/points/images/contact-group-points.png differ diff --git a/docs/points/images/form-action-with-point-group.png b/docs/points/images/form-action-with-point-group.png new file mode 100644 index 00000000..ece1bd7a Binary files /dev/null and b/docs/points/images/form-action-with-point-group.png differ diff --git a/docs/points/images/group-report.png b/docs/points/images/group-report.png new file mode 100644 index 00000000..66f28449 Binary files /dev/null and b/docs/points/images/group-report.png differ diff --git a/docs/points/images/new-group.png b/docs/points/images/new-group.png new file mode 100644 index 00000000..26a185fe Binary files /dev/null and b/docs/points/images/new-group.png differ diff --git a/docs/points/images/point-action-with-group.png b/docs/points/images/point-action-with-group.png new file mode 100644 index 00000000..c64c64f4 Binary files /dev/null and b/docs/points/images/point-action-with-group.png differ diff --git a/docs/points/images/point-trigger-with-group.png b/docs/points/images/point-trigger-with-group.png new file mode 100644 index 00000000..5edd0c14 Binary files /dev/null and b/docs/points/images/point-trigger-with-group.png differ diff --git a/docs/points/images/segment-group-filter-element.png b/docs/points/images/segment-group-filter-element.png new file mode 100644 index 00000000..7f59fa05 Binary files /dev/null and b/docs/points/images/segment-group-filter-element.png differ diff --git a/docs/points/images/segment-group-filter.png b/docs/points/images/segment-group-filter.png new file mode 100644 index 00000000..e3f38362 Binary files /dev/null and b/docs/points/images/segment-group-filter.png differ diff --git a/docs/points/point_groups.rst b/docs/points/point_groups.rst new file mode 100644 index 00000000..233606e5 --- /dev/null +++ b/docs/points/point_groups.rst @@ -0,0 +1,93 @@ +.. vale off + +Point Groups +############# + +.. vale on + +Point Groups is a feature that allows users to categorize the score of their Contacts. By setting up Point Groups, users can assign a specific number of Points to each action taken by a Contact, such as opening an Email, visiting a Landing page, or downloading an Asset. + +Managing Point Groups +====================== +To access the currently defined Point Groups in Mautic, navigate to the Points Menu and click the "Manage Groups" link. To create a new Group, simply click the "New" button. + +.. image:: images/new-group.png + :width: 600 + :alt: Screenshot of the create a new Group interface + +Enter a name and a description for the Group and click the "Save & Close" button to create the Group. + +Point Groups usage +=================== + +Point actions +------------- +You can change Contact's Points within a Points Group by using Points Actions. + +.. image:: images/point-action-with-group.png + :width: 600 + :alt: Screenshot of Points action with Group + +Point triggers +-------------- +You can use Point triggers based on Point Groups to automatically trigger specific events within the system. + +.. image:: images/point-trigger-with-group.png + :width: 600 + :alt: Screenshot of Points trigger with Group + +Campaign condition +------------------ +You can use a condition based on Group Contact score in a Campaign. + +.. image:: images/campaign-point-condition-with-group.png + :width: 600 + :alt: Screenshot of Points trigger with Group + +Campaign action +--------------- +You can use a Campaign action to increase or decrease the Group Contact score. + +.. image:: images/campaign-point-action-with-group.png + :width: 600 + :alt: Screenshot of Campaign Point action with Group + +Form action +--------------- +You can use a Form action to increase or decrease the Group Contact score. + +.. image:: images/form-action-with-point-group.png + :width: 600 + :alt: Screenshot of Form Adjust contact's points action with Group + +Segment filters +--------------- +Each Point Group adds a new filter that can be used to configurate the Segment. + +.. image:: images/segment-group-filter.png + :width: 600 + :alt: Screenshot of Segment Group filter + +.. image:: images/segment-group-filter-element.png + :width: 600 + :alt: Screenshot of Segment Group filter element + +Contact details +--------------- +You can display Point Groups in the Contact details. + +.. image:: images/contact-group-points.png + :width: 600 + :alt: Screenshot of Contact Details with Group Points + +Group Report +------------- +You can generate a Report that contains information about Contact Point Groups. + +.. image:: images/group-report.png + :width: 600 + :alt: Screenshot of Group Report + +Webhooks +-------- +Changing the Contact Group Points will not trigger the Contact Points Changed Event Webhook \ No newline at end of file diff --git a/docs/reports/reports.rst b/docs/reports/reports.rst index 72f43d0e..3e51bfae 100644 --- a/docs/reports/reports.rst +++ b/docs/reports/reports.rst @@ -60,6 +60,7 @@ The **Details** tab on a Report contains the same options across all Reports and * Segment Membership * Do Not Contact * UTM Codes + * Group score 7. :doc:`Companies` @@ -105,7 +106,6 @@ You can customize each Report to include the columns of choice, filter data base .. image:: images/mautic-report-data.png :align: center :alt: Screenshots of Mautic Report Data -| * **Columns** - Select the columns of data that you want to appear in the table of data in the Report. Click the column name in the left column to have it show in the Report. You can remove a column from the Report by clicking on its right column. The column returns to its original position on the left side. For example, if you select ID, it refers to the **ID** for the parent data source Category that you selected earlier Contact ID, Email ID, Asset ID, etc. It's recommended that you include **ID** in all Reports. * **Order** - For sorting the data in the Report, select data Points. The available sort options are **Ascending** and **Descending**. To add multiple columns, click **Add Order**. For fields that use text, an **Ascending** order lists values starting with B after values starting with A and so on. For number or date fields, the higher the number or later the date, the lower on the list the row is. Descending order is the opposite. diff --git a/docs/requirements.txt b/docs/requirements.txt index 97456aaf..beceeb66 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,11 +1,11 @@ # File: requirements.txt # Defining the exact version will make sure things don't break -sphinx==4.2.0 -sphinx_rtd_theme==1.0.0 -readthedocs-sphinx-search==0.1.0 -rstcheck==3.3.1 -myst-parser==0.16.1 -linkify-it-py==1.0.3 -esbonio==0.13.0 -attrs==21.4.0 +sphinx==8.0.2 +sphinx_rtd_theme==3.0.0 +readthedocs-sphinx-search==0.3.2 +rstcheck==6.2.4 +myst-parser==4.0.0 +linkify-it-py==2.0.3 +esbonio==0.16.5 +attrs==24.2.0 \ No newline at end of file diff --git a/docs/search/search_operators.rst b/docs/search/search_operators.rst index cbf0ac85..7ba807ff 100644 --- a/docs/search/search_operators.rst +++ b/docs/search/search_operators.rst @@ -18,7 +18,7 @@ The search filters for that entity aren't available if such a button is missing. | -Mautic also has a 'global search' feature. In the top left-hand corner, click the magnifying glass icon next to the Mautic logo/notifications icon. This will open a search input where you can search across multiple different entities. +Mautic also has a 'global search' feature. In the top left-hand corner, click the magnifying glass icon next to the Mautic logo/notifications icon. This opens a search input where you can search across multiple different entities. .. image:: images/global-search.png :align: center @@ -31,7 +31,7 @@ Search operators Here are some search operators you can use: -* ``+`` plus sign - Search for the exact string, for example, if you search for +admin, then administrator won't match. +* ``+`` plus sign - Search for the exact string, for example, if you search for ``+admin``, then ``administrator`` won't match. * ``!`` exclamation mark - Not equals string @@ -43,13 +43,13 @@ Here are some search operators you can use: * ``%`` - Use the % as a wildcard to search for specific names or values in a phrase for example, to find all Companies with the word ‘Technologies’ then type %technologies% -Search filters -============== +Search operators filters +======================== Here are some search filters you can use: -Contacts --------- +Contacts search filters +----------------------- .. code-block:: @@ -71,8 +71,8 @@ Contacts email_queued:EMAIL_ID email_pending:EMAIL_ID -Companies ---------- +Companies search filters +------------------------ .. code-block:: @@ -83,8 +83,8 @@ Companies is:uncategorized category:{category alias} -Segments --------- +Segments search filters +----------------------- .. code-block:: @@ -93,8 +93,8 @@ Segments name:* category:category-alias -Assets --------- +Assets search filters +--------------------- .. code-block:: @@ -106,8 +106,8 @@ Assets is:uncategorized category:{category alias} -Forms ------ +Forms search filters +-------------------- .. code-block:: @@ -122,8 +122,8 @@ Forms .. vale off -Landing Pages -------------- +Landing Pages search filters +---------------------------- .. vale on @@ -140,8 +140,8 @@ Landing Pages .. vale off -Dynamic Content ---------------- +Dynamic Content search filters +------------------------------ .. vale on @@ -156,8 +156,8 @@ Dynamic Content category:{category alias} lang:{lang code} -Emails --------- +Emails search filters +--------------------- .. code-block:: @@ -169,8 +169,8 @@ Emails category:{category alias} lang:{lang code} -Focus items ------------ +Focus items search filters +-------------------------- .. code-block:: @@ -181,8 +181,8 @@ Focus items is:uncategorized category:{category alias} -Manage actions --------------- +Manage actions search filters +----------------------------- .. code-block:: @@ -193,8 +193,8 @@ Manage actions is:uncategorized category:{category alias} -Manage triggers ---------------- +Manage triggers search filters +------------------------------ .. code-block:: @@ -205,8 +205,8 @@ Manage triggers is:uncategorized category:{category alias} -Stages ------- +Stages search filters +--------------------- .. code-block:: @@ -217,8 +217,8 @@ Stages is:uncategorized category:{category alias} -Reports -------- +Reports search filters +---------------------- .. code-block:: @@ -229,8 +229,8 @@ Reports Categories ids:ID1,ID2 (comma separated IDs, no spaces) is:published is:unpublished -Users ------ +Users search filters +-------------------- .. code-block:: @@ -248,8 +248,8 @@ Users is:admin name:* -Webhooks --------- +Webhooks search filters +----------------------- .. code-block:: diff --git a/docs/stages/images/Stages.png b/docs/stages/images/Stages.png new file mode 100644 index 00000000..e31215c7 Binary files /dev/null and b/docs/stages/images/Stages.png differ diff --git a/docs/stages/images/stage-dashboard.png b/docs/stages/images/stage-dashboard.png new file mode 100644 index 00000000..64a7d874 Binary files /dev/null and b/docs/stages/images/stage-dashboard.png differ diff --git a/docs/stages/images/switch-stage.png b/docs/stages/images/switch-stage.png new file mode 100644 index 00000000..71408b94 Binary files /dev/null and b/docs/stages/images/switch-stage.png differ diff --git a/docs/stages/stages.rst b/docs/stages/stages.rst index 5d559f82..19b35927 100644 --- a/docs/stages/stages.rst +++ b/docs/stages/stages.rst @@ -1,6 +1,86 @@ -.. vale off - Stages ###### -.. vale on \ No newline at end of file +Mautic Stages provide a means for Users to track and manage the progress of their Contacts through the various phases of the marketing lifecycle or funnel. + +By categorizing Contacts into different Stages, you can better understand their engagement with the brand and tailor your marketing strategies accordingly. + +Once you have created your Stages, you can easily move Contacts from one Stage to another based on their behavior or other criteria. + +.. vale off + +Creating Stages +*************** + +.. vale on + +Navigate to the **Stages** section in the left side menu, and then click **+New**. + +.. image:: images/Stages.png + :align: center + :alt: Mautic Stages + +| + +**Name** - While most Companies have similar Stage structures, each Company uses them differently. Come up with the Stages you want to track different parts of your marketing funnel with. + +**Description** - To help you and other Users easily identify what qualifies a Contact for that Stage, it's recommended to add a description. + +**Weight** - Used to decide the progression of your Stages. The greater the Stage weight number, the further along in the funnel a Contact is. Contacts can't move backwards to Stages with lower weights. + +**Category** - Assign a Category to help you organize your Stages. For more information, see :ref:`categories`. + +**Publish options** - The dashboard widget doesn't display data for an unpublished Stage. In addition, the Segment filters or Campaign conditions don't display the Stage. To avoid using the Stage while building it, set a future publish date and time. If you want the Stage to become unavailable after a certain time, set the date and time for unpublishing. + +.. vale off + +Moving Contacts between Stages +****************************** + +.. vale on + +Moving Contacts between Stages requires a Campaign action. + +Depending on how you define your Contact lifecycle and Stages, there may be different triggers for a Contact to move between Stages. Examples include behaviors within a Campaign, or moving between Segments which have criteria set up for each Stage. + +In any Campaign where you want to have Contacts move between new Stages: + +.. image:: images/switch-stage.png + :align: center + :alt: Moving Contacts between Stages + +| + +1. Add a new **Action**. + +2. Select **Change Contact's Stage** as the action type. + +3. Select the Stage you want to move the Contacts to. You can base this on a prior event, or on a Segment that Contacts are in based on filters matching your requirements for a Stage. + +For more information on setting up Campaigns, see :ref:`triggering campaign events` + +.. note:: + + You can have multiple funnels with different Stages, and multiple Stages across those funnels with the same weight. A Contact can only ever be in one Stage at a time. It's not possible to move a Contact to a Stage which has a lesser weight than their current Stage. For example if they're currently in Stage B which has a weight of 50, you can't move them to Stage A which has a weight of 25. + +.. vale off + +Visualizing Stage movement +************************** + +.. vale on + +The Mautic dashboard features two widgets to help Users see how Contacts are moving between Stages. + +.. image:: images/stage-dashboard.png + :align: center + :alt: Visualizing Stage movement + +| + +The Stages in time widget shows how often Contacts change Stages. More change indicates more velocity through your funnel. + +Lifecycle +********* + +The lifecycle widget enables marketers to see the number of Contacts within a specified Segment in each Stage. You may include multiple Segments on the widget. It's possible to have more than one lifecycle widget to break down the information into separate graphs, but still display the data on the dashboard for multiple Segments. \ No newline at end of file